编写一JAVA程序,随机产生20个0-100之间的正整数,按每行5个数输出
2个回答
展开全部
Random random = new Random();
for(int i = 0; i < 20; i++) {
System.out.print(random.nextInt(100));
if((i + 1) % 5 == 0) {
System.out.println();
} else {
System.out.print(",");
}
}
for(int i = 0; i < 20; i++) {
System.out.print(random.nextInt(100));
if((i + 1) % 5 == 0) {
System.out.println();
} else {
System.out.print(",");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "";
for(int i = 1 ;i < 21 ;i++){
str = str+" "+Math.round(Math.random()*100);
if(i % 5 == 0 ){
System.out.println(str);
str = "";
}
}
}
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "";
for(int i = 1 ;i < 21 ;i++){
str = str+" "+Math.round(Math.random()*100);
if(i % 5 == 0 ){
System.out.println(str);
str = "";
}
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询