Question: Requires C++ Code Write a program that reads in a positive integer and outputs ODD if the integer is odd and EVEN if the integer
Requires C++ Code
Write a program that reads in a positive integer and outputs "ODD" if the integer is odd and "EVEN" if the integer is even. It should keep reading positive integers and classifying them as ODD or EVEN until the user inputs -1. No classification should be produced for the -1.
Hint: Consider the While-Loop
Sample Input:
1
3 5 7 100 -1
Sample Output: ODD ODD ODD ODD EVEN
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
