Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
148871 | 黄本瀚 | 判断质数 | C++ | 解答错误 | 40 | 0 MS | 248 KB | 286 | 2024-05-25 15:07:10 |
#include<bits/stdc++.h> using namespace std; int main(){ int fw,gg,dd; cin>>fw; if(fw<=3){ cout<<"Yes"; } else{ for(int i=1;i<=99;i++){ dd=i; if(dd=fw){ dd++; } } if(fw%dd==1){ cout<<"Yes"; } else{ cout<<"No"; } } }