The source code to check the given number is EVEN or ODD using the ternary operator is given below. The given program is compiled and executed successfully.
# Ruby program to check given number is
# EVEN or ODD using ternary operator
number=0;
print "Enter number: ";
number = gets.chomp.to_i;
Msg = (number%2==0) ? "EVEN" : "ODD";
print "Number is: ",Msg;
Output:
Enter number: 15
Number is: ODD
Explanation:
In the above program, we created an integer variable number initialized with 0. Then we checked the given number is EVEN or ODD. After that, we printed the appropriate message.
Program/Source Code:
The source code to check the given number is EVEN or ODD using the ternary operator is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created an integer variable number initialized with 0. Then we checked the given number is EVEN or ODD. After that, we printed the appropriate message.
need an explanation for this answer? contact us directly to get an explanation for this answer