vote up 2 vote down star

I have this example program that gets input from stdin, which is supposed to get 2 numbers, assign them to 2 variables, print them, and then ask for 2 more, assign, and print the 2 new numbers.

However, when I input 4 numbers with spaces between them, it immediately assigns the whole 4 numbers to the 4 variables, even though, after printing the first 2, the program asks for 2 more numbers and should wait for their input, but it doesn't wait.

Here's the code:

#include<iostream>
using namespace std;

void main( )
{
    int j = -999 ,k = - 998 ,h = - 997;
    cout << "\nEnter 2 numbers:";
    cin >> j;
    cin >> k;
    cout << "\nThe variable j is " << j;
    cout << "\nThe variable k is " << k;
    cout << "\nEnter 2 numbers:";
    cin >> h;
    cin >> j;
    cout << "\nThe variable h is : " << h;
    cout << "\nThe variable j is now " << j << "\n";
}

And the result: Enter 2 numbers:5 6 7 8

The variable j is 5

The variable k is 6

Enter 2 numbers:

The variable h is : 7

The variable j is now 8

flag
Technically void main() is not well formed. main returns an integer. – Martin York Nov 9 '08 at 20:02
Same as: stackoverflow.com/questions/257091/… – Martin York Nov 9 '08 at 20:09

closed as exact duplicate by Martin York Nov 9 '08 at 20:09

3 Answers

vote up 2 vote down

You might need to flush the cin stream before prompting for the next two numbers. Have a look at http://stackoverflow.com/questions/257091/how-do-i-flush-the-cin-buffer

link|flag
vote up 2 vote down

When you use operator >> from stdin to an integer, it reads an integer from the input stream. If the input stream is empty, it waits until it finds an integer. In your case, it is simply not empty. In the first step, it reads the two integers, and in the second step, it finds the next two integers so it does not need to wait.

link|flag
vote up 0 vote down

check this too: sync_with_stdio

link|flag

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