我需要J2ME中的舍入功能。 Math.round()似乎不存在。请提供一些帮助!
答案 0 :(得分:4)
或者您可以使用其他方法:
float value;
int base; //base to round
int round_down=(int )((int )(value/base))*base;
int round_up=(int )((int )(value/base+0.5))*base;
答案 1 :(得分:1)
Math.ceil() or Math.floor()
可能但这些仅适用于CLDC 1.1 :)