带有示例的 Scala Float round() 方法
round()方法用于返回指定浮点值的舍入值。如果浮点值为 5.5 或大于 5.5 到 5.9,则返回 6,否则如果浮点值为 5.0 或 5.4,则返回 5
Method Definition: (Float_Value).round
Return Type: It returns the rounded value of the specified float value.
示例 #1:
// Scala program of Float round()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying round method
val result = (5.4).round
// Displays output
println(result)
}
}
输出:
5
示例 #2:
// Scala program of Float round()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying round method
val result = (5.9).round
// Displays output
println(result)
}
}
输出:
6