问题及代码:
/*
*Copyright(c)2016,烟台大学计算机与控制工程学院
*All right reserved.
*文件名称:77.cpp
*作 者:董凯琦
*完成日期:2016年6月14日
*版 本 号:v1.0
*
*问题描述:
下面程序的功能是统计文本文件abc.txt中的字符个数,请填空将程序补充完整。
#include <iostream>
#include <cstdlib>
#include _____________ // (1)
using namespace std;
int main()
{
fstream file;
file.open("abc.txt", _________); // (2)
if(!file)
{
cout<<"abc.txt can’t open."<<endl;
exit(1);
}
char ch;
int i=0;
while( _____________) // (3)
{
_____________; // (4)
}
cout<<"Character: "<<i<<endl;
file._____________;// (5)
return 0;
}
*输入描述:
*程序输出:
*/
#include <iostream>
#include <cstdlib>
#include <fstream>// (1)
using namespace std;
int main()
{
fstream file;
file.open("abc.txt", ios::in); // (2)
if(!file)
{
cout<<"abc.txt can’t open."<<endl;
exit(1);
}
char ch;
int i=0;
while(file.get(ch)) // (3)
{
++i; // (4)
}
cout<<"Character: "<<i<<endl;
file.close();// (5)
return 0;
}
运行结果: