ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#212265 | #1. A+B Problem | Panjunnan | Compile Error | / | / | C++ | 129b | 2024-10-13 16:30:02 | 2024-10-13 16:30:04 |
answer
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b;
c=a+b;
cout<<c;
return 0;
}
详细
answer.code:5:2: error: stray '\357' in program cin>>a>>b;\x0d ^ answer.code:5:2: error: stray '\274' in program answer.code:5:2: error: stray '\233' in program answer.code: In function 'int main()': answer.code:6:2: error: expected ';' before 'c' c=a+b;\x0d ^