php round to up half code example
Example 1: python round up
>>> import math
>>> math.ceil(5.2)
6
>>> math.ceil(5)
5
>>> math.ceil(-0.5)
0
Example 2: java round up
double test = 0.01;
// rounds up to the next INTEGER
test = Math.ceil(test); // 1.0
double test2 = 1.0;
// does not round if decimal is 0
test2 = Math.ceil(test2); // 1.0