Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
334336 | 李俞家骅 | 【C1-12】判断能否被3,5,7整除 | C++ | 通过 | 100 | 1 MS | 244 KB | 377 | 2025-07-18 09:26:08 |
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x%105==0) cout<<"3 5 7"; else if(x%15==0) cout<<"3 5"; else if(x%21==0) cout<<"3 7"; else if(x%35==0) cout<<"5 7"; else if(x%3==0) cout<<"3"; else if(x%5==0) cout<<"5"; else if(x%7==0) cout<<"7"; else cout<<'n'; return 0; }