| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 126932 | 陈俊亦 | 02简单两数相加 | C++ | Compile Error | 0 MS | 0 KB | 116 | 2025-07-22 16:24:44 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a,b; cout<<a+b; return 0;
Main.cc: In function 'int main()':
Main.cc:5:13: warning: right operand of comma operator has no effect [-Wunused-value]
cin>>a,b;
^
Main.cc:7:13: error: expected '}' at end of input
return 0;
^