把米除以100然后四舍五入后再除以10就是公里数,这里的所有除法中的除数都要加d,意思是要强制转化成double类型,否则结果就是0了 int x = 789; Math.round( x / 100d) / 10d ); //输出0.8