| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 131673 | 万嘉宇 | [在线测评解答教程] 求和 | C++ | Compile Error | 0 MS | 0 KB | 406 | 2025-09-30 19:58: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 main(){ int n; cin>>n; for(int i=1;i<=n;i++){ i+=i; } cout<<i; return 0; }
Main.cc: In function 'int main()':
Main.cc:12:11: error: 'i' was not declared in this scope
cout<