Scala Short %(x: Double)方法及示例
%(x: Double)方法用于寻找所述Short值除以Double类型的’x’的余数。
方法定义: def %(x: Double):Double
返回类型。它返回Double。
例如:1#。
// Scala program of %(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying %(x: Double) method
val result = (1000).%(10.45)
// Displays output
println(result)
}
}
输出。
7.2500000000000675
例如:2#
// Scala program of %(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying %(x: Double) method
val result = (994).%(15.76)
// Displays output
println(result)
}
}
输出。
1.1200000000000134