1/11/00
COM1100 Winter2000 Yuhong Yin Northeastern University
23
Variable Definition -- 3
nRead user input from the keyboard or input from a file
nThe basic C++ statement that read the input stream from the keyboard (the sequence of keystrokes typed in followed by the return key) is following (using cin >>):
nint x; 
ncin >> x;
nstring myName;
ncin >> myName;
n