Q:

Scala program to find the largest element from the array

belongs to collection: Scala Array Programs

0

Here, we will create an array of integer elements, and then we will find the largest element from the array and print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to find the largest element from the array is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to find the largest element 
// from the array

object Sample {  
    def main(args: Array[String]) {  
        var IntArray = Array(10,50,40,20,30)
        var count:Int=0
        var large:Int=0
        
        large=IntArray(0)
        while(count<IntArray.size)
        {
            if(large<IntArray(count))
                large=IntArray(count)
            count=count+1
        }
        printf("Largest element is: %d\n",large)
    }
}  

Output:

Largest element is: 50

Explanation:

In the above program, we used an object-oriented approach to create the program. We created an object Sample, and we defined main() function. The main() function is the entry point for the program.

In the main() function, we created a array IntArray and two integer variables countlarge. Then we found the largest element by comparing each array element and then print the largest element on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Scala Array Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Scala program to find the second largest element f... >>
<< Scala program to get the size of an array...