How to find the Maximum of Two Numbers in Ruby


How to find the Maximum of Two Numbers in Ruby ?

Answer

To find the maximum of two numbers in Ruby, you can use the max method.



✐ Examples

1 Maximum of Two Numbers

In this example,

  1. We assign values to two variables a and b.
  2. We use the max method to find the maximum of a and b.
  3. We print the maximum value.

Ruby Program

# Maximum of Two Numbers
a = 10
b = 15
max_value = [a, b].max
puts "Maximum of #{a} and #{b} is: #{max_value}"

Output

Maximum of 10 and 15 is: 15

Summary

In this tutorial, we learned How to find the Maximum of Two Numbers in Ruby language with well detailed examples.




More Ruby Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in Ruby ?
  2. How to find the Minimum of Two Numbers in Ruby ?
  3. How to find the Maximum of Three Numbers in Ruby ?
  4. How to find the Minimum of Three Numbers in Ruby ?