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