Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพื่อพิมพ์ค่าที่ไม่ซ้ำจากรายการ


ในการพิมพ์ค่าที่ไม่ซ้ำกันจากรายการใน Java โค้ดจะเป็นดังนี้ -

ตัวอย่าง

import java.io.*;
public class Demo{
   static void distinct_vals(int my_arr[], int len){
      for (int i = 0; i < len; i++){
         int j;
         for (j = 0; j < i; j++)
         if (my_arr[i] == my_arr[j])
            break;
         if (i == j)
         System.out.print( my_arr[i] + " ");
      }
   }
   public static void main (String[] args){
      int my_arr[] = {55, 67, 99, 11, 54, 55, 88, 99, 1, 13, 45};
      int arr_len = my_arr.length;
      System.out.println("The distinct elements in the array are ");
      distinct_vals(my_arr, arr_len);
   }
}

ผลลัพธ์

The distinct elements in the array are
55 67 99 11 54 88 1 13 45

คลาสชื่อ Demo มีฟังก์ชันชื่อ 'distinct_vals' ซึ่งรับอาร์เรย์และความยาวของอาร์เรย์เป็นพารามิเตอร์ มันวนซ้ำอาร์เรย์และตรวจสอบค่าที่ซ้ำกันและพิมพ์เฉพาะค่าที่ไม่ซ้ำกันของอาร์เรย์ ในฟังก์ชันหลัก อาร์เรย์จะถูกกำหนดและความยาวของอาร์เรย์จะถูกเก็บไว้ในตัวแปร ฟังก์ชัน 'distinct_vals' นี้ถูกเรียกด้วยอาร์เรย์และความยาวที่กำหนด และผลลัพธ์จะแสดงบนคอนโซล