Open In App

Scala Double +(x: Float) Method With Example

Improve
Improve
Like Article
Like
Save
Share
Report

The +(x: Float) method is used to find the sum of the specified double and the given ‘x’ type of float in the argument.

Syntax: def +(x: Float): Double
Returns: It return the sum of the specified double and the given float type ’x’.

Example 1:




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


Output:

7.334537559999999

Example 2:




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


Output:

38.33453756


Last Updated : 03 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads