| 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | 9 | | 10 | | 11 | | 12 | | 13 | | 14 | | 15 | | 16 | | 17 | | 18 | | 19 | | 20 | | 21 | | 22 | | 23 | | 24 | | 25 | | 26 | | | #include <iostream> | | | | using namespace std; | | | | int main() | | { | | int num1; | | char ans; | | do { | | cout << "Welcome, please enter a number to check: "; | | cin >> num1; | | if (num1 % 2 == 0) | | { | | cout << "Number is even!\n"; | | } | | else | | { | | cout << "Number is odd!\n"; | | } | | | | cout << "Re-use? ( Y / N ): "; | | cin >> ans; | | } | | while ((ans == 'Y') || (ans == 'y')); | | | | } |
|