[ java ] array 안에 중복값 확인 메소드 만들기
페이지 정보
작성자 웹지기 댓글 0건 조회 8,220회 작성일 20-12-17 16:44본문
public class Exam08_isDuplicate {
public static void main(String[] args) {
//int[] array = {2,6,3,5,4};
int[] array = {2,4,3,5,4};
boolean result = isDuplicate(array);
System.out.println(result);
}
public static boolean isDuplicate(int[] array) {
boolean result = false;
for(int i=0; i<array.length; i++) {
for(int j=1; j<array.length; j++) {
if(i!=j) { //본인의 값은 비교하지 않음
if(array[i] == array[j]) {
result = true;
break;
}
}
}
}
return result;
}
}
int[] array = {2,4,3,5,4}
true
int[] array = {2,6,3,5,4}
false
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.