1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Update java-basic-questions-01.md

自增自减运算,例题答案勘误
This commit is contained in:
biea008 2024-11-30 15:43:26 +08:00 committed by GitHub
parent fd47a1c687
commit 236986590c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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