//Exercise 1-31 #include int main() { int num1; cout << "Welcome to Tom's Odd and Even Evaluator Game!!\n\n"; cout << "Enter an integer\n\n"; cin >> num1; if ( num1 % 2 == 0 ) cout << "\nGuess what?\n\n" << num1 << " is an even number!\n\n"; if ( num1 % 2 != 0 ) cout << "\nGuess what?\n\n" << num1 << " is an odd number!\n\n"; return 0; }