不好意思,眼神不好,所以全部加粗了,不然看不清!呵呵
我用红色标明的地方注意了,别漏了,否则会有警告的!
#include "stdio.h" main() { int i,j, a[10],b[10]; printf("Input array a:"); for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\nInput array b:"); for(j=0;j<10;j++) scanf("%d",&b[j]); for(i=0;i<10;i++) { for(j=0;j<10;j++) if(a[i]==b[j]) printf("The same number is %d \n" ,a[i]);
} printf("\n"); }
你在输入数据的时候点一个数字按一次回车键即可得到你想要的结果了