函数表达
2023-07-26 20:57:44
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
bool cou(int n){
return n%3==2 and n%5==3 and n%7==2;
}
int main(){
int n;
cin>>n;
for(int i=1;i<=n;i++){
if(cou(i)) cout<<i<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个