#include <iostream>
using namespace std;//告诉编译程序使用std命名空间
int main(){
int a;
int b;
cout << “请输入第一个加数:”;//打印字符串
cin >> a;//接收整数
cout << “请输入第二个加数:”;
cin >> b;
cout << “a+b=” << (a+b);
system(“pause”);
return 0;
}
#include <iostream>
using namespace std;//告诉编译程序使用std命名空间
int main(){
int a;
int b;
cout << “请输入第一个加数:”;//打印字符串
cin >> a;//接收整数
cout << “请输入第二个加数:”;
cin >> b;
cout << “a+b=” << (a+b);
system(“pause”);
return 0;
}