下面程序的功能是在a数组中查找与x值相同的元素所在位置,请填空。
#include <stdio.h>
void main()
{ int a[10],i,x;
printf(“input 10 integers:”);
for(i=0;i<10;i++)
scanf(“%d”,&a[i]);
printf(“input the number you want to find x:”);
scanf(“%d”, );
for(i=0;i<10;i++)
if( )
break;
if( )
printf(“the pos of x is:%d\n”,i);
else printf(“can not find x!\n”);
}
登录后提交答案