gpt4 book ai didi

java-me - J2ME有舍入功能吗?

转载 作者:行者123 更新时间:2023-12-01 11:58:00 25 4
gpt4 key购买 nike

我需要 J2ME 中的舍入函数。 Math.round() 似乎不存在。请提供一些帮助!

最佳答案

或者您可以使用另一种方法:

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;

关于java-me - J2ME有舍入功能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4930598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com