第十四周上机项目1.1小玩文件

来源:互联网 发布:淘宝助理快递模板设置 编辑:程序博客网 时间:2024/06/17 12:31
/*  *Copyright (c) 2015, 烟台大学计算机学院  *All rights reserved.  *文件名称:text.cpp  *作者:陈栋梁  *完成日期:2015年 6月 10日  *版本号:v1.0  *  */  #include <iostream>#include <cstdlib>#include  <fstream>using namespace std;int main(){    fstream file;    file.open("abc.txt", ios::in);    if(!file) {        cout<<"abc.txt can’t open."<<endl;        exit(1);    }    char ch;    int i=0;    while(!file.eof())    {        file.get(ch);        ++i;    }    cout<<"Character: "<<i<<endl;    file.close();    return 0;}


运行结果:

0 0