You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include <iostream>
using namespace std;
int main() {
int num;
// User-friendly prompt
cout << "===== EVEN OR ODD NUMBER CHECKER =====" << endl;
cout << "Enter an integer: ";
cin >> num;
// Checking if the number is even or odd
if (num % 2 == 0) {
cout << "\nResult: " << num << " is an EVEN number." << endl;
} else {
cout << "\nResult: " << num << " is an ODD number." << endl;
}
// Ending message
cout << "======================================" << endl;
cout << "Thank you for using this program!" << endl;
return 0;
} #166