#include
using namespace std;
int main()
{
ifstream fin("in.txt", ios::in);
ofstream fout("out.txt", ios::out);
string line;
int i = 0;
while(getline(fin, line))
{
fout << i << line << endl;
++ i;
}
return 0;
}
window下面每行是以^M$表示结尾的, 所以你可以通过识别这个结尾标来加行号了 代码自己写吧