Open In App

Scala Float %(x: Long) method with example

The %(x: Long) method is utilized to return the remainder when the given float value is divided by the long value.

Method Definition: (Float_Value).%(Long_Value)



Return Type: It returns the remainder when the given float value is divided by the long value.

Example #1:




// Scala program of Float %(x: Long)
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying %(x: Long) function
        val result = (65.0).%(65.0)
          
        // Displays output
        println(result)
      
    }

Output:

0.0

Example #2:




// Scala program of Float %(x: Long)
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying %(x: Long) function
        val result = (100.0).%(65.0)
          
        // Displays output
        println(result)
      
    }

Output:
35.0

Article Tags :