/* Input Output Objects * inputOutput.cpp * OOP244 * Jan 10 2005 To compile type: c++ inputOutput.cpp */ #include using namespace std; int main ( ) { int i; cout << "Enter an integer : "; cin >> i; cout << "You entered " << i << endl; return 0; }