题解
2025-08-01 10:53:37
发布于:湖南
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int i=100;i<=200;i++){
if(i%3==2&&i%5==3){
cout<<i;
break;
}
}
return 0;
}
或
#include<bits/stdc++.h>
using namespace std;
int main(){
cout<<173;
return 0;
}
这里空空如也
有帮助,赞一个