文章
15
粉丝
142
获赞
26
访问
19.2k
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
using namespace std;
int res=0; // 用来记录已经输出了多少个数字
int main(){
for (int i=100; i<=1000; i++){ // 枚举 100 到 1000 之间的数字
if (i % 5 == 0 && i % 6 == 0) { // 如果这个数字既能被 5 整除,又能被 6 整除
if (res % 10 == 0 && res != 0) printf("\n"); // 如果已经输出了 10 个数字,就换行,否则不换行
cout << i; // 输出该数字
res++; // 计数器加一
if (res % 10 != 0) printf(" "); // 如果不是最后一个数字,就输出空格,否则不输出
}
}
return 0;
}
这段代码实现了输出 100 到 1...
登录后发布评论
暂无评论,来抢沙发