The max() method is utilized to return the maximum value of the two specified float numbers.
Scala
Scala
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:
Example #2:
9.0
// 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