| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 138795 | 唐俊逸 | 判断质数(使用while循环) | C++ | Compile Error | 0 MS | 0 KB | 575 | 2025-11-29 19:10:25 |
#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,i=2; cin>>n; while(i<=(n-1)){ if(n%i==0){ cout<<No; } } cout<<n; return 0; }
Main.cc: In function 'int main()':
Main.cc:12:19: error: 'No' was not declared in this scope
cout<