Possible Duplicate:
Why does (360 / 24) / 60 = 0 … in Java




我有这个问题:

float rate= (115/100);


当我做:

System.out.println(rate);


给我1.0
问题是什么?

最佳答案

115和100都是整数,因此将返回整数。

尝试这样做:

float rate = (115f / 100f);

10-06 02:21