我有两个整数数组,“a”和“b”。我想查找 a[0]、a[1] 等是否也在 b[] 内。我试过这个:
int emfanisi(int a[], int b[], int x){
int i, j;
for(i=0; i<x; i++)
{
for(j=0; j<x; j++)
{
if(a[i] = b[j])
{
return 1;
}
else
{
return 0;
}
}
}
}
我主要这样做:
for(i=0; i<2; i++){
pos = 0;
pos = emfanisi(a,b,2);
if(pos = 1)
printf("The %d number shows in the second array\n", i+1);
else
printf("The %d number doesnt show in the second array\n", i+1);
}
但这似乎不起作用!
有人可以指出我的错误吗?