1/10/00
COM1100-Winter2000-Yuhong Yin
Northeastern University
26
Input statement -- Examples
n
int first, second, last;
n
cin >> first >> second >> last;
n
When type in these three numbers from
keyboard, they should be separated by white
space (blank spaces, tabs, or newlines)
n
12
6
15
n
12
n
6
n
15