| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134694 | 孔声豪 | 05交换数据 | C++ | Compile Error | 0 MS | 0 KB | 357 | 2025-11-01 11:16:10 |
#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 a,b,c; a=3; b=5; c=b; b=a; a=c; cout<<a<","<<b<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:14:18: error: invalid operands of types 'const char [2]' and 'int' to binary 'operator<<'
cout<