Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4150 | 测试1 | A+B 输入输出练习III | C++ | Compile Error | 0 MS | 0 KB | 205 | 2024-08-12 00:56:31 |
#include <iostream> using namespace std; int main() { int a,b; while(1){ cin >> a >> b; if(a==0&&b==0){ break; } cout << a + b << endl; }
Main.cc: In function 'int main()': Main.cc:11:5: error: expected '}' at end of input } ^