// name: Connor Mcdowell // date: 3/9/2024 // class: CST 116 // reason: in class exercise number 3. #include using std::cin; using std::cout; using std::endl; int main() { int input = 0; cout << "Please enter a number: "; cin >> input; cout << " " << endl; if(input == 0) { cout << "Your input is exactly 0!" << endl; } if(input < 0) { cout << "Your number is a negative number!" << endl; } if(input > 0) { cout << "Your number is a positive number!" << endl; } return 0; }