Skip to content
idea插件开发文档
首页
idea插件开发文档
脚本
windows脚本
linux脚本
微信小游戏
Java保留2位小数
走着路睡觉
java
小于 1 分钟
DecimalFormat
df
=
new
DecimalFormat
(
"#.00"
)
;
System
.
out
.
println
(
df
.
format
(
1.55226600
)
)
;
//输出 1.55
Loading...