浏览代码

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

wesvirus 4 年之前
父节点
当前提交
94f3018cec
共有 1 个文件被更改,包括 2 次插入1 次删除
  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";