Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116316 | 李钧皓 | 14判断素数III | C++ | Wrong Answer | 1 MS | 272 KB | 250 | 2025-04-08 14:32:06 |
#include <iostream> using namespace std; int main(){ int i,n; bool flag; cin>>n; for(i=2;i<n;i++){ if(n%i==0){ flag=false; break; } } if(flag==true){ cout<<"YES"<<endl; }else{ cout<<"NO"<<endl; } return 0; }
------Input------
991
------Answer-----
YES
------Your output-----
NO