// cin_tst.cpp // demonstrates stream I/O, cin #include // for cout and endl #include // for getch() void main(int argc, char* argv[] ) { float her_height; cout << endl << "Enter his height (m): "; cin >> her_height; cout << endl << "She is " << her_height << " meters tall." << endl; getch(); } // main()