#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream stream1("source.txt");
string line ;
ofstream stream2("target.txt");
while(std::getline(stream1, line))
{
stream2 << line << endl;
cout << line << endl;
}
stream1.close();
stream2.close(); return 0;
}
我想讓這個程序每10行讀一遍並寫入我的文件。每隔X行讀寫一次文件
我該如何去做這件事?
廣東話你使用一些櫃檯?仍然需要每次調用getline,但是隻有在計數器命中10時纔將其放入另一個文件的流中,然後重新初始化計數器 – Arunmu 2012-02-04 07:38:18