| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139530 | 袁龙浩 | 判断素数II | C++ | Compile Error | 0 MS | 0 KB | 528 | 2025-12-07 15:32:31 |
#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 a(int x){ int s=0; for(int i=2;i*i<=x;i++){ if(x%i==0){ return 0; } } return 1; } int main(){ int n,x,s=0; cin>>n; for(int i=2;i<=n;i++){ if(a(n)){ s++; } cout<<s; return 0; }
Main.cc: In function 'int a(int)':
Main.cc:8:9: warning: unused variable 's' [-Wunused-variable]
int s=0;
^
Main.cc: In function 'int main()':
Main.cc:17:11: warning: unused variable 'x' [-Wunused-variable]
int n,x,s=0;
^
Main.cc:25:1: error: expected '}' at end of input
}
^