ruby float保留小数的位数
悬赏:3 发布时间:2010-01-07 提问人:ltl3884 (初级程序员)
猎头职位: 比如保留一位小数
f = 6.33333
puts (f*10).round/10.to_f
这样比较麻烦,谁有比较好的方法 啊?
f = 6.33333
puts (f*10).round/10.to_f
这样比较麻烦,谁有比较好的方法 啊?
采纳的答案
2010-01-07 boobmoom (初级程序员)
- f=6.3333
- format("%.2f",f).to_f