[求助]如何读取A[][]中与B[][]两个数组中不同的元素
各位,如何读取A[][]中与B[][]两个数组中不同的元素,B是A的子集.
int a[][]=new int[10][10];
int b[][]=new int[5][5];
for(int i=0;i<10;i++){
for(int j=0;j<10;j++){
compare(a[i][j]);
}
}
pulbic void compare(int x){
boolean b = true;
for(int i=0;i<5;i++){
for(int j=0;j<5;j++){
if(b[i][j]==x){
b = false;
break;
}
}
}
if(b){
System.out.println(x);
}
}