Update java-basic-questions-01.md

This commit is contained in:
xieliangza 2024-10-16 13:55:51 +08:00 committed by GitHub
parent 1ba08ab91f
commit eb9cd6be3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ int d = c--;
int e = --d;
```
答案:`a = 11` 、`b = 9` 、 `c = 10` 、 `d = 10` 、 `e = 10`
答案:`a = 11` 、`b = 9` 、 `c = 11` 、 `d = 11` 、 `e = 10`
### 移位运算符