Open In App

Scala Float max() method with example

Last Updated : 29 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The max() method is utilized to return the maximum value of the two specified float numbers.
Method Definition: (First_Number).max(Second_Number) Return Type: It returns the maximum value of the two specified float numbers.
Example #1: Scala
// Scala program of Float max()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying max method
        val result = (5.9).max(9.0)
        
        // Displays output
        println(result)
    
    }
} 
Output:
9.0
Example #2: Scala
// Scala program of Float max()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying max method
        val result = (5.0).max(5.0)
        
        // Displays output
        println(result)
    
    }
} 
Output:
5.0

Next Article
Article Tags :

Similar Reads