Open In App

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

Last Updated : 16 Feb, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

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

Method Definition: (Float_Value)!=(x: Char)
Return Type: It returns true if the given Float and Char value is not equal to each other, otherwise return false. 
 

Example #1: 
 

Scala




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


Output: 

false

 

Example #2: 
 

Scala




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


Output: 

true

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads