**This is an old revision of the document!**
#include<iostream> #include<iomanip> #include<string> using namespace std; int main() { cout << endl << "\tCIN:\n\n"; // from last time: int favorite_number; cout << "Please give me your favorite number:"; cin >> favorite_number; cout << "\nHey, I know you, your favorite number is " << favorite_number << endl; return 0; }Back to top