UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#212267#1. A+B ProblemPanjunnanCompile Error//C++11138b2024-10-13 16:31:222024-10-13 16:31:23

answer

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

详细

answer.code:6:2: error: stray '\357' in program
  cin>>a>>b;\x0d
  ^
answer.code:6:2: error: stray '\274' in program
answer.code:6:2: error: stray '\233' in program
answer.code: In function 'int main()':
answer.code:7:2: error: expected ';' before 'int'
  int c=a+b;\x0d
  ^
answer.code:8:8: error: 'c' was not declared in this scope
  cout<<c;\x0d
        ^