/* Filename: choice2.cpp Author: Br. David Carlson Date: January 4, 2000 Modified: June 26, 2000 This program asks the user to enter a number and prints out a message stating whether or not it is positive. */ #include using namespace std; int main(void) { int Num; cout << "Enter a number (integer): "; cin >> Num; cout << endl << Num; if (Num > 0) cout << " is positive" << endl << endl; else cout << " is not positive" << endl << endl; return 0; }