I need a function that rounds float number to nearest great integer:
# input -> output
14.72 -> 15
14.01 -> 15
14.00 -> 14
How to do this ?
I need a function that rounds float number to nearest great integer:
# input -> output
14.72 -> 15
14.01 -> 15
14.00 -> 14
How to do this ?