Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Ruby Basic Exercises: Find the greatest of three numbers

Ruby Basic: Exercise-20 with Solution

Write a Ruby program to find the greatest of three numbers.

Ruby Basic Exercises: Find the greatest of three numbers

Ruby Code:

x,y,z = 2,5,4
if x >= y and x >= z
     puts "x = #{x} is greatest."
elsif y >= z and y >= x 
     puts "y = #{y} is greatest."
else 
     puts "z = #{z} is greatest."
end

Output:

y = 5 is greatest.

Flowchart:

Flowchart: Find the greatest of three numbers

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to check two integers and return true if one of them is 20 otherwise return their sum.
Next: Write a Ruby program to check if a number is within 10 of 100 or 200.

What is the difficulty level of this exercise?