初学者编的一个C++的加法程序,总是错误请大神解答

2024-12-16 00:59:56
推荐回答(3个)
回答1:

ofstream("plusab.out"); ---> ofstream fout("plusab.out"); //没有声明对象
ifstream("plusab.in"); ----> ifstream fin("plusab.in");
int a,b;
ifstream>>"a,b"; ------>fin>>a>>b; //输入
ofstream<<"a+b"<fout< return 0;

回答2:

流对象要操作变量,而不是字符串常量,改为ifstream>>a>>b;
ofstream<注意分号是英文输入法的

回答3:

#include
using namespace std;

int main()
{
int a,b;

cin>>a>>b;
cout<
return 0;
}