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

Ruby Example: Write a program to check whether the given number is EVEN or ODD using ternary operator.
Submitted by Nidhi, on December 01, 2021

Problem Solution:

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

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.

Ruby Basic Programs »




Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.