I have an operation that returns a float for example 6.3
and I need to round it to 7
I have tried with Math.round(6.3)
but when the decimal is less than 0.5 it rounds down and when it is bigger it rounds up and I need it to always do it upwards.