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)
true false true
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Ruby Code: