0
我在尋找一個JavaScript函數至極允許這樣做:如何在javascript中舍入到下一個倍數?
function arrondiSuperieur($nombre, $arrondi) {
return ceil($nombre/$arrondi) * $arrondi;
}
echo arrondiSuperieur(6, 5); //display 10
echo arrondiSuperieur(16, 7); //display 21
你有一個想法?
23是一個素數......你的意思是21? –
是的,你是對的! – bahamut100
爲什麼你不使用你有的功能? btw:ceil(16/7)* 7 = ceil(1,28 ..)* 7 = 2 * 7 = 21 – PiTheNumber