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
