📜  Scala Double /(x: Double) 方法

📅  最后修改于: 2022-05-13 01:54:41.483000             🧑  作者: Mango

Scala Double /(x: Double) 方法

在 Scala 中,Double 是一个 64 位浮点数,相当于 Java 的 double 基本类型。 /(x: Double)方法用于返回该值与给定值 x 的商。

示例 #1:

// Scala program to explain the working 
// of Double /(x: Double) method
   
// Creating object
object GfG
{ 
   
    // Main method
    def main(args:Array[String])
    {
       
        // Applying /(x: Double) function
        val result = (12.251100.toDouble)./(3:Double)
           
        // Displays output
        println(result)
       
    }
} 
输出:
4.083699999999999

示例 #2:

// Scala program to explain the working 
// of Double /(x: Double) method
   
// Creating object
object GfG
{ 
   
    // Main method
    def main(args:Array[String])
    {
       
        // Applying /(x: Double) function
        val result = (16.02505.toDouble)./(5:Double)
           
        // Displays output
        println(result)
       
    }
}
输出:
3.20501