📜  带有示例的 Scala Char /(x: Double) 方法

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

带有示例的 Scala Char /(x: Double) 方法

/(x: Double)方法用于求指定字符值与 Double 类型的“x”的商。

示例:1#

// Scala program of /(x: Double)
// method
  
// Creating object
object GfG 
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying /(x: Double) method 
        val result = 'A'./(111.65785)
          
        // Displays output
        println(result)
      
    }
} 
输出:
0.5821355148787121

示例:2#

// Scala program of /(x: Double)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying /(x: Double) method
        val result = 'D'./(9845.65785)
          
        // Displays output
        println(result)
      
    }
} 
输出:
0.006906597917172188