用java做的一个for循环 要求能随机输出1到100的数字
展开全部
public class MathTest {
public static void main(String[] args) {
java.util.Random r = new java.util.Random();
for (int i = 0; i < 10; i++) {
int temp = r.nextInt(100);
if (temp >= 1 && temp <= 30) {
System.out.println(temp+" --该数大于1小于30");
}else{
System.out.println(temp);
}
}
}
}
=========================
61
9 --该数大于1小于30
5 --该数大于1小于30
82
60
53
98
36
97
36
public static void main(String[] args) {
java.util.Random r = new java.util.Random();
for (int i = 0; i < 10; i++) {
int temp = r.nextInt(100);
if (temp >= 1 && temp <= 30) {
System.out.println(temp+" --该数大于1小于30");
}else{
System.out.println(temp);
}
}
}
}
=========================
61
9 --该数大于1小于30
5 --该数大于1小于30
82
60
53
98
36
97
36
展开全部
public class Test1 {
public static void main(String[] args) {
for(int i=0;i<10;i++){
System.out.println(doRandom(Math.random()));
}
}
public static String doRandom(double d){
d*=100;
d=Math.round(d);
if(d/30<1){
return (int)d +"\t小于三十哦";
}
return ""+(int)d;
}
}
public static void main(String[] args) {
for(int i=0;i<10;i++){
System.out.println(doRandom(Math.random()));
}
}
public static String doRandom(double d){
d*=100;
d=Math.round(d);
if(d/30<1){
return (int)d +"\t小于三十哦";
}
return ""+(int)d;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询