Math.ceil(value);
int n = (int) Math.ceil((double) a / b));
Math.ceil(125.9)=126.0
Math.ceil(0.4873)=1.0
Math.ceil(-0.65)=-0.0
The ceiling of a floating point number is the smallest integer that is >= to the number.
//perfect for percentage progress bars