zl程序教程

您现在的位置是:首页 >  其他

当前栏目

补:小玩文件1-统计文本文件里的字符个数

文件统计字符 个数 文本文件
2023-09-11 14:15:00 时间

  输入代码:

/*    
*Copyright (c)2015,烟台大学计算机与控制project学院    
*All rights reserved.    
*文件名:sum123.cpp    
*作    者:林海云    
*完毕日期:2015年8月18日    
*版 本 号:v2.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; }


执行结果: