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

来源:互联网 发布:全球第一大社交网络 编辑:程序博客网 时间:2024/06/06 10:40

问题及代码:

/**Copyright (c) 2016,烟台大学计算机学院*All rights reserved.*文件名称:zwj.cpp*作    者:张伟晶*完成日期:2016年6月17日*版 本 号:v1.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;}

运行结果:

知识点总结:

文件操作

0 0