Open In App

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

Last Updated : 03 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
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
// 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
// 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

Next Article
Article Tags :

Similar Reads