I need to do something like this
int num1, num2, num3;
User Input: (num1) (blank space or tab) (num2) (blank space or tab) (num3) (blank space or tab)
(blank space or tab) can be ” ” or \t
cout << num1 << num2 << num3;
How would I go about doing this?
1 Answer