问题及代码:
运行结果:
知识点总结:
文件读取。
/*
*Copyright (c)2015,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:File.cpp
*作 者:单昕昕
*完成日期:2015年6月8日
*版 本 号:v1.0
*问题描述:程序的功能是统计文本文件abc.txt中的字符个数,请填空将程序补充完整。
*程序输入:文件读取。
*程序输出:文本文件abc.txt中的字符个数。
*/
#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.eof()) // (3)
{
file.get(ch);
++i; // (4)
}
cout<<"Character: "<<i<<endl;
file.close();// (5)
return 0;
}
运行结果:
知识点总结:
文件读取。
学习心得:
就是一个对文件读取的简单实践,新技能get~

被折叠的 条评论
为什么被折叠?



