ceil和floor均可有一個附加參數,用它可指定舍去的小數位.
ceil(parameter_name or number, number_of_dec_places).
floor(parameter_name or number, number_of_dec_places).
| |
參數名或數值. 要保留的小數位(可省略)
number_of_ded_places:它的取值的不同可有不同的結果.
i)可以為數值亦可為參數,若為實數則取整.
ii)若number_of_dec_place>8,則不作任何處理,用原值
若number_of_dec_place≦8,則舍去其后的小數位,則進位
例如:
Ceil(10.2)-->11 比10.2大的最小整數為11.
floor(-10.2)-->-11 比-10.2小的最大整數為-11.
floor(10.2)-->10 比10.2小的最大整數為10.
Ceil(10.255,2)-->10.26. 比10.255大的最小符合數.
Ceil(10.255,0)-->11
floor(10.255,1)-->10.2
Len1=ceil(20.5) ==>Len1=21
Len2=floor(-11.3) ==>Len2=-12
Len=Len1+Len2 ==>Len=9
可能你的参数名错了,p23只能是代表阵列参数,不知你的是否? |