w3resource

Ruby Basic Exercises: Check two given integers and return true if either one is 11 or their sum or difference is 11 otherwise return false

Ruby Basic: Exercise-45 with Solution

Write a Ruby program to check two given integers and return true if either one is 11 or their sum or difference is 11 otherwise return false.

Ruby Code:

def check_num(a,b)
   return a == 11 || b == 11 || a + b == 11 || (a-b).abs == 11
end

print check_num(9, 11),"\n"
print check_num(13, 7),"\n"
print check_num(22, 11),"\n"
print check_num(21, 32),"\n"
print check_num(20, 30)

Output:

true
false
true
true
false

Flowchart:

Flowchart: Check two given integers and return true if either one is 11 or their sum or difference is 11 otherwise return false

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to compute and print the sum of two given integers, print 30 if the sum is in the range 20..30 (inclusive).
Next: Write a Ruby program to check a given non-negative number and return true if num is within 2 of a multiple of 10.

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-45.php