Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116315 | 李钧皓 | 14判断素数III | C++ | Wrong Answer | 0 MS | 276 KB | 266 | 2025-04-08 14:31:26 |
#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<<"是素数"<<endl; }else{ cout<<"不是素数"<<endl; } return 0; }
------Input------
991
------Answer-----
YES
------Your output-----
不是素数