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