rounding to the nearest 5 java code example
Example 1: rounding up a number so that it is divisible by 5 javascript
function round5(x)
{
return Math.ceil(x/5)*5;
}
Example 2: rounding up a number so that it is divisible by 5 javascript
const roundToNearest5 = x => Math.round(x/5)*5