输入代码:
/* *Copyright (c)2015,烟台大学计算机与控制project学院 *All rights reserved. *文件名:sum123.cpp *作 者:林海云 *完毕日期:2015年8月18日 *版 本 号:v2.0 *问题描写叙述:将文本文件abc.txt中的全部行加上行号后写到newabc.txt文件里。*程序输入:文件读取。 *程序输出:将文本文件里的全部行加上行号后写到新文件里。 */ #include <iostream> #include <cstdlib> #include <fstream> using namespace std; int main() { fstream outfile,infile; infile.open("abc.txt",ios::in); // (1) if(!infile) { cout<<"Can’t open the file."<<endl; abort(); } outfile.open("newabc.txt",ios::out);//(2) if(!outfile) { cout<<"Can’t open the file."<<endl; abort(); } char buf[800]; int i=1; while(!infile.eof()) // (3) { infile.getline(buf,800); // (4) outfile<<i++<<": "<<buf<<endl; //(5) } infile.close(); outfile.close(); return 0; }
执行结果:
abc.tex文件数据
newabc.tex