| 4 | using namespace std; |
| 5 | |
| 6 | int main() { |
| 7 | int a; |
| 8 | cout << "Enter the number: "; |
| 9 | cin >> a; |
| 10 | |
| 11 | if (a % 2 == 0) |
| 12 | cout << "Your number is Even!" << endl; |
| 13 | else |
| 14 | cout << "Your number is Odd!" << endl; |
| 15 | |
| 16 | system("pause"); |
| 17 | return 0; |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected