我有一个巨大的双倍,我希望得到前2个十进制数字作为浮点数.这是一个例子:
double x = 0.36843871 float y = magicFunction(x) print(y)
输出: 36
如果您不明白,请随时提问.
你可以乘以100
并使用Math.floor(double)
喜欢
int y = (int) Math.floor(x * 100); System.out.println(y);
我得到了(要求的)
36
请注意,如果您使用float
,那么您会得到36.0
.