1/10/00
COM1100-Winter2000-Yuhong Yin Northeastern University
25
Input statement -- Examples
nint first, second, last;
n   cin >> first;
n   cin >> second;
n   cin >> last;
nIt is also possible to read more than one values from the keyboard
n   int first, second, last;
n   cin >> first >> second >> last;
n