Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117085 | 任紫谦 | 14判断素数III | C++ | Wrong Answer | 1 MS | 272 KB | 319 | 2025-04-13 15:39:48 |
#include <iostream> using namespace std; int main(){ int n,i; bool flag; flag=true; 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; } }
------Input------
465
------Answer-----
NO
------Your output-----
YES