Ruby Basic Exercises: Check two integers and return true if one of them is 20 otherwise return their sum
Write a Ruby program to check two integers and return true if one of them is 20 otherwise return their sum.
Ruby Code:
def makes20(x,y)
return x == 20 || y == 20 || x + y == 20
end
print makes20(10, 10),"\n"
print makes20(40, 10),"\n"
print makes20(15, 20)
Output:
true false true
Flowchart:

Go to:
PREV : Write a Ruby program to find the maximum of two numbers.
NEXT : Write a Ruby program to find the greatest of three numbers.
Ruby Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?