| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130261 | 赵乐骏 | A+B 输入输出练习I | C++ | Compile Error | 0 MS | 0 KB | 145 | 2025-09-10 19:08:44 |
#include <iostream> using namespace std; int main(){ int a,b; while(scanf("%d%d",&a&b)) printf("%d%d",a+b); return 0; }
Main.cc: In function 'int main()':
Main.cc:5:27: error: invalid operands of types 'int*' and 'int' to binary 'operator&'
while(scanf("%d%d",&a&b))
^
Main.cc:6:22: warning: format '%d' expects a matching 'int' argument [-Wformat=]
printf("%d%d",a+b);
^