Open In App

Scala Stack product() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

In Scala Stack class, the product() method is utilized to return the product of all the elements of the stack.

Method Definition: def product: A

Return Type: It returns the product of all the elements of the stack.

Example #1:




// Scala program of product() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating stack
        val s1 = Stack(1, 2, 3, 4
          
        // Print the stack 
        println(s1
           
        // Applying product method  
        val result = s1.product
          
        // Display output 
        print("Product of all the elements of the stack: " + result) 
         
    


Output:

Stack(1, 2, 3, 4)
Product of all the elements of the stack: 24

Example #2:




// Scala program of product() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating stack
        val s1 = Stack(5, 2, 3, 7
          
        // Print the stack 
        println(s1
           
        // Applying product method  
        val result = s1.product
          
        // Display output 
        print("Product of all the elements of the stack: " + result) 
         
    


Output:

Stack(5, 2, 3, 7)
Product of all the elements of the stack: 210


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