| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 129125 | 胥博雯 | 14判断素数III | C++ | Wrong Answer | 0 MS | 276 KB | 551 | 2025-08-22 11:11:40 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n; bool flag; flag=true; cin>>n; for(int 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-----
是素数