w3resource

Ruby Basic Exercises: Check two integers and return true if one of them is 20 otherwise return their sum

Ruby Basic: Exercise-19 with Solution

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:

Flowchart: Check two integers and return true if one of them is 20 otherwise return their sum

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to find the maximum of two numbers.
Next: Write a Ruby program to find the greatest of three numbers.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/ruby-exercises/basic/ruby-basic-exercise-19.php