我无法弄清楚为什么我的文件没有写出来

时间:2013-09-20 06:44:07

标签: c++

#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;
}

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

2 个答案:

答案 0 :(得分:1)

更改

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

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

答案 1 :(得分:0)

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

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

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