Q:

Ruby program to check the given number is EVEN or ODD using ternary operator

belongs to collection: Ruby Basic Programs

0

In this program, we will read an integer number from the user. Then we will check given number is EVEN or ODD.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

# 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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to check the given number is POSITIVE... >>
<< Ruby program to divide a number from another numbe...