Open In App

Scala Double %(x: Char) method

Last Updated : 02 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

In Scala, Double is a 64-bit floating point number, which is equivalent to Java’s double primitive type. The %(x: Char) method is utilized to return the remainder when the given Double value is divided by the Char value.

Method Definition – def %(x: Char)

Returns – Returns the remainder of the division of this value by x.

Example #1:




// Scala program to explain the working 
// of Double %(x: Char) method
   
// Creating object
object GfG
   
    // Main method
    def main(args:Array[String])
    {
       
        // Applying %(x: Char) function
        val result = (10.0012230.toDouble ).%('G':Char)
           
        // Displays output
        println(result)
       
    }
}


Output:

10.001223

 

Example #2:




// Scala program to explain the working 
// of Double %(x: Char) method
   
// Creating object
object GfG
   
    // Main method
    def main(args:Array[String])
    {
       
        // Applying %(x: Char) function
        val result = (65.toDouble ).%('A':Char)
           
        // Displays output
        println(result)
       
    }
}


Output:

0.0


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads