Browse Source

Update 'Add-Subtract-Multiply-or-Divide/code.cpp'

wesvirus 4 years ago
parent
commit
94f3018cec
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Add-Subtract-Multiply-or-Divide/code.cpp

+ 2 - 1
Add-Subtract-Multiply-or-Divide/code.cpp

@@ -1,6 +1,7 @@
 /*  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".  
+ *  If none of the operations can give 24, return "Invalid".
+ *  a change.
  */
 std::string operation(int num1, int num2) {
 	std::string result = "Invalid";