| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 142877 | 编程星球01 | A+B 输入输出练习I | C++ | Compile Error | 0 MS | 0 KB | 165 | 2026-01-11 16:49:42 |
#include<iostream> using namespace std; int main() { long long a; long long b ; while(cin>>a>>b;){ cout<<a+b<<endl; } return 0; }
Main.cc: In function 'int main()':
Main.cc:9:17: error: expected ')' before ';' token
while(cin>>a>>b;){
^
Main.cc:9:18: error: expected primary-expression before ')' token
while(cin>>a>>b;){
^