Open In App

Scala Float max() method with example

Last Updated : 29 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
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 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 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


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

Similar Reads