c++ 文件读写 格式操作的问题
voidmake_neat(ifstream&messy_file,ofstream&neat_file,intnumber_after_decimalpoint,int...
void make_neat(ifstream& messy_file, ofstream& neat_file,
int number_after_decimalpoint, int field_width); // must be called by reference;
{
neat_file.setf(ios::fixed);
neat_file.setf(ios::showpoint);
neat_file.setf(ios::showpos);
neat_file.precision(number_after_decimalpoint);
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.setf(ios::showpos);
cout.precision(number_after_decimalpoint);
double next;
while(messy_file >> next)
{
cout << setw(field_width) << next << endl;
neat_file << setw(field_width) << next << endl;
}
}
这是一个将a文件中的数字,用工整的格式写入b文件的函数。 我想请问其中
nea t_file.setf(ios::fixed);
neat_file.setf(ios::showpoint);
neat_file.setf(ios::showpos);
neat_file.precision(number_after_decimalpoint);
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.setf(ios::showpos);
cout.precision(number_after_decimalpoint);
这几行代码的意思,cout是怎么出来的,为什么都要现有ios::fixed?方便的话请解释下每行的意义。。。谢谢啦 展开
int number_after_decimalpoint, int field_width); // must be called by reference;
{
neat_file.setf(ios::fixed);
neat_file.setf(ios::showpoint);
neat_file.setf(ios::showpos);
neat_file.precision(number_after_decimalpoint);
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.setf(ios::showpos);
cout.precision(number_after_decimalpoint);
double next;
while(messy_file >> next)
{
cout << setw(field_width) << next << endl;
neat_file << setw(field_width) << next << endl;
}
}
这是一个将a文件中的数字,用工整的格式写入b文件的函数。 我想请问其中
nea t_file.setf(ios::fixed);
neat_file.setf(ios::showpoint);
neat_file.setf(ios::showpos);
neat_file.precision(number_after_decimalpoint);
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.setf(ios::showpos);
cout.precision(number_after_decimalpoint);
这几行代码的意思,cout是怎么出来的,为什么都要现有ios::fixed?方便的话请解释下每行的意义。。。谢谢啦 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询