输出1~100中前5个是13的倍数的数字。 输入格式: 无输入。 输出格式: 换行输出。用javafor
时间: 2024-05-29 07:08:57 浏览: 153
java中数字格式化输出
3星 · 编辑精心推荐
int count = 0;
for(int i=1; i<=100; i++){
if(i%13==0){
count++;
System.out.println(i);
if(count==5){
break;
}
}
}
阅读全文