标签: java number-formatting scientific-notation
我正在尝试使用scanner类来读取和打印double类型的值,但我得到了输出
我的输出 2.3534534534523453E11
预期产出 235345345345.234534
答案 0 :(得分:0)
你所看到的被称为sintific符号的数字是相同的,你可以使用这样的东西以正常的方式打印它
System.out.printf("dexp: %f\n", yournumbergoeshere);