标签: java
如何在Java中大量舍入数字? 我必须得到答案z = 5.
int x=82; int y=20; int z; z= x/y.
答案 0 :(得分:0)
如果x和y为正,则将分母加1小于分子:
int x=82; int y=20; int z= (x + y - 1)/y;