Open In App

Scala Double *(x: Int) method

Last Updated : 02 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
In Scala, Double is a 64-bit floating point number, which is equivalent to Java’s double primitive type. The *(x: Long) method is utilized to return the product of the specified Double value and Int value.
Method Definition - def *(x: Int) Returns - Returns the product of this value and x.
Example #1: SCALA
// Scala program to explain working of
// Double *(x: Int) method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying *(x: Int) function
        val result = (15.002150.toDouble).*(5:Int)
        
        // Displays output
        println(result)
    
    }
} 

 
Output:
75.01075
  Example #2: SCALA
// Scala program to explain working of
// Double *(x: Int) method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying *(x: Int) function
        val result = (16.002100.toDouble).*(5:Int)
        
        // Displays output
        println(result)
    
    }
} 
Output:
80.0105

Article Tags :

Similar Reads