0

I have a value of 18.5 and when I used the round(), it remains 18.

How to round off the value to 19.

18.5 ---> 19 [any other functions]

Thankx

Just code
  • 13,553
  • 10
  • 51
  • 93

1 Answers1

0

You might want to refer to the ceil function. Try ceil(18.5)

NcDreamy
  • 785
  • 6
  • 14