Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
148993 | 吴悠 | 判断质数 | C++ | 通过 | 100 | 0 MS | 252 KB | 347 | 2024-05-25 15:27:50 |
#include<iostream> #include<cmath> using namespace std; bool judge(int n){ for(int i=2;i<=sqrt(n);i++){ if(n%i==0){ return false; } } return true; } int main(){ int n; cin>>n; if(n==0 || n==1){ cout<<"No"<<endl; return 0; } if(judge(n)==true){ cout<<"Yes"<<endl; } else cout<<"No"<<endl; return 0; }