Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
148910 | 陈峘宇 | 判断质数 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 381 | 2024-05-25 15:11:55 |
#include<iostream> #include<cstdio> using namespace std; int main(){ long long n; int sum; cin>>n; if(n==1){ cout<<"no"<<endl; } for(int i=1;i<=n;i++){ if(n%i==0){ sum++; } } for(int i=1;i<=n;i++){ if(n%1==0){ sum++; } } if(sum>2){ cout<<"no"<<endl; } if(sum<=2){ cout<<"yes"<<endl; } return 0; }