第十四周项目1(1)-小玩文件

来源:互联网 发布:简明python教程 从哪买 编辑:程序博客网 时间:2024/05/21 17:51
/* *Copyright (c) 2014, 烟台大学计算机学院 *All rights reserved. *文件名称:week14-1-1.cpp *作者:高赞 *完成日期: 2015 年 6 月 6 日 *版本号:v1.0 * *问题描述:统计文本文件abc.txt中的字符个数 * * */#include <iostream>#include <cstdlib>#include <fstream>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;}



0 0