Ruby program to find the largest number between two numbers using ternary operator

Ruby Example: Write a program to find the largest number between two numbers using ternary operator.
Submitted by Nidhi, on December 01, 2021

Problem Solution:

In this program, we will read two integer numbers from the user. Then we will find the largest between two numbers using the ternary operator.

Program/Source Code:

The source code to find the largest number between two numbers using the ternary operator is given below. The given program is compiled and executed successfully.

# Ruby program to find the largest number 
# between two numbers using ternary operator

print "Enter first number: ";
a = gets.chomp.to_i;  

print "Enter second number: ";
b = gets.chomp.to_i;  
  
largest=a>b ? a : b; 
        
print "Largest number is: ",largest;

Output:

Enter first number: 19
Enter second number: 15
Largest number is: 19

Explanation:

In the above program, we read two integer numbers from the user and found the largest number between them using the ternary operator, and printed the result.

Ruby Basic Programs »





Comments and Discussions!

Load comments ↻






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