Skip to content

Commit e33fa0b

Browse files
authored
添加注释
1 parent b3ffe34 commit e33fa0b

File tree

1 file changed

+1
-0
lines changed
  • solution/0700-0799/0772.Basic Calculator III

1 file changed

+1
-0
lines changed

solution/0700-0799/0772.Basic Calculator III/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ class Solution {
9090
public:
9191
// 定义一个操作函数,根据操作符进行数学运算
9292
int operate(int b, char ch, int a) {
93+
//注意ab顺序
9394
switch (ch) {
9495
case '+':
9596
return a + b; // 加法

0 commit comments

Comments
 (0)