Independent of the instruction, if I code
Code:
cin >> aa >> bb >> cc >> dd;
It is the same as
Code:
cin >> aa;
cin >> bb;
cin >> cc;
cin >> dd;
The output of both codes will be:
Code:
x
x
x
x
This is not what I want. I want the output of the code to be in the form of:
Code:
 x x x x
When I respond to the first part of the *cin>>* statement by entering a number, the computer will just sit there doing nothing until I press enter, then it will print the second part of the *cin >>* on a new line. That is the point. I do not want that new line. I want the second part of the *cin >>* output on the same line as was the first part of the *cin >>* statement.