소스 검색

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";