Q:

Scala program to print the distinct elements of the array

belongs to collection: Scala Array Programs

0

Here, we will create an array of integer elements. Then we will use the distinct() method to get the distinct elements of the array. The distinct() method returns an array that contains distinct elements.

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 print the distinct elements of the array is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to print the
// distinct elements of the array

object Sample {

  def main(args: Array[String]) {
    var arr1 = Array(10, 23, 14, 16, 10, 14, 13, 60);

    var i: Int = 0;

    var arr2 = arr1.distinct;

    i = 0;
    println("Distinct elements of array: ")
    while (i < arr2.length) {
      printf("%d ", arr2(i));
      i = i + 1;
    }
    println();
  }
}

Output:

Distinct elements of array: 
10 23 14 16 13 60

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 array arr1 that contains integer elements. Then we used the distinct() method to get the distinct elements of array arr1 and assigned the result into arr2. After that, we printed the elements of array arr2 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 print the size of the array... >>
<< Scala program to print the common elements of two ...