Open In App

Scala Float !=(x: Double) method with example

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

The !=(x: Double) method is utilized to check whether the given float and double value are equal to each other or not.

Method Definition: (Float_Value)!=(x: Double)

Return Type: It returns true if the given float and double value is not equal to each other, otherwise return false.

Example #1:




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


Output:

false

Example #2:




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


Output:

true


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads