Q:

Ruby program to find the largest number among three numbers using ternary operator

belongs to collection: Ruby Basic Programs

0

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

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 find the largest number among three numbers using the ternary operator is given below. The given program is compiled and executed successfully.

# Ruby program to find the largest number 
# among three numbers using ternary operator

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

print "Enter second number: ";
b = gets.chomp.to_i;  

print "Enter third number: ";
c = gets.chomp.to_i;  

largest=a>b ? a>c ?a : c : b>c ? b : c;        
        
print "Largest number is: ",largest;

Output:

Enter first number: 12
Enter second number: 16
Enter third number: 19
Largest number is: 19

Explanation:

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

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 find the division of students base... >>
<< Ruby program to find the largest number between tw...