7/2 = 3.5
How do I get high number of the remainder? In this example it should be 4, not 3.
|
7/2 = 3.5 How do I get high number of the remainder? In this example it should be 4, not 3. |
||||
|
|
You are looking for the Math.ceil function:
The ceil is short for ceiling which will always round up, so anything >3 would become 4. The opposite of this is Math.floor, which will always round down, so anything <4 will become 3. |
||||
|
|
You want |
|||||
|
|
The remainder in 7/2 is 1. I don't think you meant to ask about remainders. Is your question really 'How do I round a decimal number to the nearest integer?' - in which case 3.5 should round up to 4, but 3.4 should round down to 3? If so, you want the
|
|||
|
|