Home »
Scala »
Scala Programs
Scala program to find the largest element from the array
Here, we are going to learn how to find the largest element from the array in Scala programming language?
Submitted by Nidhi, on May 08, 2021 [Last updated : March 10, 2023]
Scala – Find the Largest Element of an Array
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.
Scala code to find the largest element from the array
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 count, large. Then we found the largest element by comparing each array element and then print the largest element on the console screen.
Scala Array Programs »