Ruby Basic Exercises: Find the greatest of three numbers
Write a Ruby program to 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:
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?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics