Scala Float %(x: Float) 方法示例
%(x: Float)方法用于返回第一个浮点值除以第二个浮点值时的余数。
Method Definition: (First_Float_Value).%(Second_Float_Value)
Return Type: It returns the remainder when the first float value is divided by the second float value.
示例 #1:
// Scala program of Float %(x: Float)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying %(x: Float) function
val result = (65.0).%(65.0)
// Displays output
println(result)
}
}
输出:
0.0
示例 #2:
// Scala program of Float %(x: Float)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying %(x: Float) function
val result = (100.0).%(65.0)
// Displays output
println(result)
}
}
输出:
35.0