C++
#include<bits/stdc++.h>
using namespace std;
bool isFS(int n){
if(n%5==0 && n%6==0) return true;
else return false;
}
int main(){
int count = 0;
for(int i = 100; i <= 1000; i++){
if(isFS(i)){
count++;
if(count%10!=0){
cout << i <<" ";
}
else{
cout << i << endl;
}
}
...
登录后发布评论
暂无评论,来抢沙发