Demonstration mit dem Array int[] hier
Kopieren Sie den Codecode wie folgt:
public static void main(String[] args) {
int[] arry={1,10,5,8,11,100,99,10};
//Tag, mit dem ermittelt wird, ob doppelte Werte vorhanden sind
boolesches Flag=false;
for (int i = 0; i < arry.length; i++) {
int temp=arry[i];
int count=0;
for (int j = 0; j < arry.length; j++) {
int temp2=arry[j];
//Wenn es doppelte Werte gibt, count+1
if(temp==temp2){
count++;
}
}
//Da es in der Mitte noch einmal mit sich selbst verglichen wird, muss hier festgestellt werden, dass count>=2 ist
if(count>=2){
flag=true;
}
}
if(flag){
System.out.println("Es existieren doppelte Werte!!!");
}anders{
System.out.println("Keine doppelten Werte vorhanden!!!");
}
}