Q:

Scala program to get the size of an array

belongs to collection: Scala Array Programs

0

Here, we will create an array of 5 integer elements. And, we will get the size of the array using the size method and print the size of the array 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 get the size of an array is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to get the size of an array

object Sample {  
    def main(args: Array[String]) {  
        //Create an array with 5 integer elements
        var MyArr = Array(5,4,3,2,1) 
        
        printf("Size of array is: %d\n",MyArr.size)
    }
} 

Output:

Size of array is: 5

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 an integer array MyArr with 5 elements. Then we got the size of array MyArr using the size() method and printed the result 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 largest element from the... >>
<< Scala program to access array elements using forea...