/* type in a number on the keyboard & echo it to the screen*/ #include using namespace std; int main() { int number; cout << "Type in a number on the keyboard" << endl; cin >> number; cout << "The number is " << number << endl; // system("pause"); //un-comment when using DevC++ return 0; }