[removed] Round up to the next multiple of 5

后端 未结 8 967
[愿得一人]
[愿得一人] 2020-12-02 09:39

I need a utility function that takes in an integer value (ranging from 2 to 5 digits in length) that rounds up to the next multiple of 5 instead of the

8条回答
  •  粉色の甜心
    2020-12-02 10:13

    if( x % 5 == 0 ) {
        return int( Math.floor( x / 5 ) ) * 5;
    } else {
        return ( int( Math.floor( x / 5 ) ) * 5 ) + 5;
    }
    

    maybe?

提交回复
热议问题