• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
小飞侠
find beauty of life
博客园    首页    新随笔    联系   管理    订阅  订阅
C++文件读写练习
编写一个程序,统计data.txt文件的行数,并将所有行前加上行号后写到data1.txt文件中。
算法提示:
行与行之间以回车符分隔,而getline()函数以回车符作为终止符。因此,可以采用getline()函数读取每一行,再用一个变量i计算行数。
  
(1)实现源代码
  
  
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
  
using namespace std;
  
int coutFile(char * filename,char * outfilename)
{
    ifstream  filein;
    filein.open(filename,ios_base::in);
    ofstream  fileout;
    fileout.open(outfilename,ios_base::out);
    string strtemp;
    int count=0;
    while(getline(filein,strtemp))
    {
        count++;
        cout<<strtemp<<endl;
        fileout<<count<<" "<<strtemp<<endl;
    }
    filein.close();
    fileout.close();
    return count;
}
  
  
void main()
{
    cout<<coutFile("c:\\data.txt","c:\\data1.txt")<<endl;
}
posted on 2015-07-07 21:46  flypie  阅读(580)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3