| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 131411 | 李亭绪 | 13求1╳2+2╳3+3╳4+...+10╳11的和 | C++ | Compile Error | 0 MS | 0 KB | 315 | 2025-09-24 19:17:19 |
#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 s=440; } cout<<s; return 0; }
Main.cc: In function 'int main()':
Main.cc:9:9: warning: unused variable 's' [-Wunused-variable]
int s=440;
^
Main.cc: At global scope:
Main.cc:12:5: error: 'cout' does not name a type
cout<