Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Scala Float round() method with example

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The round() method is utilized to return the rounded value of the specified float value. If the float value is 5.5 or greater than 5.5 till 5.9, then it will returns 6 otherwise 5 if the float value is 5.0 or till 5.4

Method Definition: (Float_Value).round

Return Type: It returns the rounded value of the specified float value.

Example #1:




// Scala program of Float round()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying round method
        val result = (5.4).round
          
        // Displays output
        println(result)
      
    }

Output:

5

Example #2:




// Scala program of Float round()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying round method
        val result = (5.9).round
          
        // Displays output
        println(result)
      
    }

Output:

6

My Personal Notes arrow_drop_up
Last Updated : 29 Oct, 2019
Like Article
Save Article
Similar Reads