Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#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;
}

I want to make this program read every 10th line and write it into my file.

How do i go about doing this?

share|improve this question
Cant you make use of some counters? Still you need to call getline every time, but only put it into stream of the other file when counter hits 10 and then re-initialize the counter – ArunMu Feb 4 '12 at 7:38

1 Answer

up vote 3 down vote accepted

You need to read every line and increment a counter. If the counter reach 10, you need to write the line and reset the counter.

       

int lineNumber = 0;

while( std::getline( stream1, line ) )
{
    if (lineNumber == 10)
    {
         stream2 << line << endl;
         cout << line << endl;
         lineNumber = 0
    }

    lineNumber++;
}
share|improve this answer
something wrong with your increment operator?? i dont c it. Also you need to assign lineNumber = 0 after it hits 10 – ArunMu Feb 4 '12 at 7:43
Writing on stackoverflow from a tablet sucks... Should work now, but the formatting options aren't available. – Fox32 Feb 4 '12 at 7:46
I got the idea of your formatting and it worked perfect!!! – sonicboom Feb 4 '12 at 7:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.