java编程问题,急急急!随机产生并输出N个随机数,直到最近产生两个数之和为100。
展开全部
Random random = new Random();
int i,j;
while(true){
i = random.nextInt(100);
j = random.nextInt(100);
if(i+j==100){
System.out.print("i:"+i+" j:"+j);
break;
}
}
简单啊,取两个随机数判断下就ok
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
package test;
public class TestRandom {
public static void main(String[] args) {
int x = (int)(Math.random()*100);
int y = (int)(Math.random()*100);
while(x+y!=100){
System.out.println(x);
x = y;
y=(int)(Math.random()*100);
}
System.out.println(x);
System.out.println(y);
}
}
public class TestRandom {
public static void main(String[] args) {
int x = (int)(Math.random()*100);
int y = (int)(Math.random()*100);
while(x+y!=100){
System.out.println(x);
x = y;
y=(int)(Math.random()*100);
}
System.out.println(x);
System.out.println(y);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
死循环里套两个随机数,和为100就跳出循坏
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.util.Random;
public class RandomADD {
public static void main(String[] args){
int last=-1;
int now=0;
Random rd=new Random();
int range=100;//随机数范围0~90
boolean run=true;
while(run){
now=rd.nextInt(range);
if(last==-1){
last=now;
System.out.println("本次随机数为:"+now);
}else{
if((last+now)==100){
run=false;
System.out.println("本次随机数为:"+now+" 上次随机数为:"+last+" 和为:"+(last+now));
}else{
System.out.println("本次随机数为:"+now+" 上次随机数为:"+last+" 和为:"+(last+now));
last=now;
}
}
}
}
}
public class RandomADD {
public static void main(String[] args){
int last=-1;
int now=0;
Random rd=new Random();
int range=100;//随机数范围0~90
boolean run=true;
while(run){
now=rd.nextInt(range);
if(last==-1){
last=now;
System.out.println("本次随机数为:"+now);
}else{
if((last+now)==100){
run=false;
System.out.println("本次随机数为:"+now+" 上次随机数为:"+last+" 和为:"+(last+now));
}else{
System.out.println("本次随机数为:"+now+" 上次随机数为:"+last+" 和为:"+(last+now));
last=now;
}
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询