Open In App

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

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

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

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

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

Example #1:




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


Output:

false

Example #2:




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


Output:

true


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads