共用方式為


round()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

將四捨五入的數位傳回指定的有效位數。

語法

round(number [, precision])

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 描述
number long 或 real ✔️ 要計算四捨五入的數位。
有效位數 int 要四捨五入的數位數目。 預設值是 0。

傳回

四捨五入到指定有效位數的數位。

Round 與函 bin() 式不同,函式會將 round() 數位四捨五入為特定數位數目,而函 bin() 式會將值四捨五入為指定間隔大小的整數倍數。 例如, round(2.15, 1) 傳回 2 時 bin(2.15, 1) 會傳回 2.2。

範例

round(2.98765, 3)   // 2.988
round(2.15, 1)      // 2.2
round(2.15)         // 2 // equivalent to round(2.15, 0)
round(-50.55, -2)   // -100
round(21.5, -1)     // 20