欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

查找数组中的重复元素

程序员文章站 2022-07-12 09:28:51
...
package com.zxj.array;

public class MainClass3 {

	public static void main(String[] args) {
		int[] my_array = {1,2,5,5,6,6,7,2,9,2};
		findDupicateInArray(my_array);
	}
	public static void findDupicateInArray(int[] a) {
		int count = 0;
		for(int j=0;j<a.length;j++) {
			for(int k=j+1;k<a.length;k++) {
				if(a[j]==a[k]) {
					count++;
				}
			}
			if(count==1) {
				System.out.println("重复元素:"+a[j]);
			}
			count = 0;
		}
	}
}

相关标签: Java