Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update java-basic-questions-01.md
自增自减运算,例题答案勘误
  • Loading branch information
biea008 authored Nov 30, 2024
commit 236986590c2ec247cbdb9b83b8b23bafce2751ce
2 changes: 1 addition & 1 deletion docs/java/basis/java-basic-questions-01.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ int d = c--;
int e = --d;
```

答案:`a = 11` 、`b = 9` 、 `c = 11` 、 `d = 11` 、 `e = 10`。
答案:`a = 11` 、`b = 9` 、 `c = 10` 、 `d = 10` 、 `e = 10`。

### 移位运算符

Expand Down