wesvirus 94f3018cec Update 'Add-Subtract-Multiply-or-Divide/code.cpp' | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Matt tags: math, numbers
Write a function that takes two numbers and returns if they should be added, subtracted, multiplied or divided to get 24. If none of the operations can give 24, return "Invalid". Examples operation(15, 9) ➞ "added" operation(26, 2) ➞ "subtracted" operation(11, 11) ➞ "Invalid" Notes Only integers are used as test input. Numbers should be added, subtracted,
Write a function that takes two numbers and returns if they should be added, subtracted, multiplied or divided to get 24. If none of the operations can give 24, return "Invalid"
.
operation(15, 9) ➞ "added"
operation(26, 2) ➞ "subtracted"
operation(11, 11) ➞ "Invalid"