0
#include<iostream>
#include<fstream>
using namespace std;
int main()
{

ifstream initialCost;
ofstream output;
output.open("output.txt");
initialCost.open("InitialCost.txt");
float csh1, af1, tr1, csh2, af2, tr2,tcsh1, tcsh2;

initialCost >> csh1 >> af1 >> tr1 >> csh2 >> af2 >> tr2;

tcsh1 =csh1+ (5*(csh1*tr1))+(5*af1);
tcsh2 =csh2+ (5*(csh2*tr2))+(5*af2);

cout<< "Initial House cost"<< '\t'
    << "Annual Fuel Cost" << '\t'
    << "Tax Rate" << '\t'
    << "Total Cost"<< '\n'
    << csh1 << '\t' << af1<< '\t' << tr1 << '\t' << tcsh1 << '\n'
    << csh2 << '\t' << af2<< '\t' << tr2 << '\t' << tcsh2 << '\n';



return 0;
}

我的输出很奇怪,我无法弄清楚为什么我的第二组输出不像第一组那样工作。我还需要我的输出写入输出文件。

4

2 回答 2

1

改变

cout<< "Initial House cost"<< '\t'

output<< "Initial House cost"<< '\t'
于 2013-09-20T06:52:56.260 回答
0

我不打算在这一行中使用逗号:

initialCost >> csh1 >> af1 >> tr1 >> csh2, af2, tr2;

写入文件就像写入一样std::cout,都是输出流并且工作方式相同。

于 2013-09-20T06:45:30.063 回答