Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108250 周子潇 100至200之间的所有素数 C++ Compile Error 0 MS 0 KB 373 2025-01-20 08:38:25

Tests(0/0):


Code:

#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(){ for(int i=100;i<=200;i++) { if(i%2!=0) { cout<<i<<endl; } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:5: error: expected '}' at end of input
     }
     ^