Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
152835 刘睿霖 A+B 输入输出练习III C++ Compile Error 0 MS 0 KB 222 2026-05-03 11:56:59

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a; int b; while(cin>>a>>b) { if(a=0&&b=0) { break; } cout<<a+b<<endl; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:9:18: error: lvalue required as left operand of assignment
         if(a=0&&b=0)
                  ^