Skip to content

Commit aa83091

Browse files
authored
Update java-basic-questions-01.md
printf 可以复现注释后的小数点数据
1 parent 8adefc8 commit aa83091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/basis/java-basic-questions-01.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ private static long sum() {
665665
```java
666666
float a = 2.0f - 1.9f;
667667
float b = 1.8f - 1.7f;
668-
System.out.println(a);// 0.100000024
668+
System.out.printf("%.9f",a);// 0.100000024
669669
System.out.println(b);// 0.099999905
670670
System.out.println(a == b);// false
671671
```

0 commit comments

Comments
 (0)