小试文件

来源:互联网 发布:热血江湖sf源码 编辑:程序博客网 时间:2024/06/05 01:53
/* Copyright (c) 2016* All rights reserved 烟台大学计算机与控制工程学院* 文件名称:3.cpp* 作者:刘丽* 完成日期:2016年 6 月 15日* 版本号: v1.0**/ //(1)统计文本文件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.get(ch)) // (3)    {        ++i; // (4)    }    cout<<"Character: "<<i<<endl;    file.close();// (5)    return 0;}





0 0
原创粉丝点击