私の目的は、配列 a と b の交点の値を見つけて新しい配列 c に格納し、出力が 3,10,4,8 になるようにすることです。特定の値を 3 番目の配列 c に割り当てるにはどうすればよいですか?
public static void main(String[] args) {
int a[] = {3, 10, 4, 2, 8};
int[] b = {10, 4, 12, 3, 23, 1, 8};
int[] c;
int i=0;
for(int f=0;f<a.length;f++){
for(int k=0;k<b.length;k++){
if(a[f]==b[k]){
//here should be a line that stores equal values of 2 arrays(a,b) into array c
}
}
}
for (int x=0; x<c.length; x++){
System.out.println(c[i]);
}
}
}