编写一个java程序 输出1到200之间所有能被3整除的整数 要求输出时每行输出5个整数
编写一个java程序输出1到200之间所有能被3整除的整数要求输出时每行输出5个整数在线等quickly!thanks!...
编写一个java程序 输出1到200之间所有能被3整除的整数 要求输出时每行输出5个整数 在线等 quickly!thanks!
展开
1个回答
展开全部
public class Test {
public static void main(String[] args) {
int count = 0;
for (int i = 0; i < 200; i++) {
if (i % 3 == 0) {
System.out.printf("%5d", i);
if (count % 5 == 4) {
System.out.println();
}
count++;
}
}
}
}
public static void main(String[] args) {
int count = 0;
for (int i = 0; i < 200; i++) {
if (i % 3 == 0) {
System.out.printf("%5d", i);
if (count % 5 == 4) {
System.out.println();
}
count++;
}
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询