[ create a new paste ] login | about

Link: http://codepad.org/RT1fGF3H    [ raw code | output | fork ]

C++, pasted on Oct 12:
1
2
3
4
5
6
7
8
9
10
include<iostream>
using namespace std;
int main(){
int a,b;
cout<<"请输入两个数:"<<endl;
cin>>a>>b;
cout<<a<<" "<<endl;
return 0;

}


Output:
1
2
Line 1: error: stray '\357' in program
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: