Open In App

Scala Int round() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

The round() method is utilized to return the rounded value of the specified int value. This method is used to avoid accidental loss of precision from a detour through Float.

Method Definition: def round: Int

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

Example #1:




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


Output:

5

Example #2:




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


Output:

6


Last Updated : 30 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads