Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111007 文苑 A+B 输入输出练习III C++ Compile Error 0 MS 0 KB 230 2025-02-25 10:44:04

Tests(0/0):


Code:

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


Run Info:

Main.cc:1:15: warning: extra tokens at end of #include directive
 #include<>bits/stdc++.h>
               ^
Main.cc:1:25: fatal error: >bit: No such file or directory
 #include<>bits/stdc++.h>
                         ^
compilation terminated.