题目:
输入一个正整数repeat (0<repeat<10),做repeat次下列运算:
输入一个正整数 n (1<n<=10),然后输入n个整数存入数组a中,再输入一个整数x,在数组a中查找x,如果找到则输出相应元素的最小下标,否则输出"Not found"。
要求定义并调用函数search(list, n, x),它的功能是在数组list中查找元素x,若找到则返回相应元素的最小下标,否则返回-1,函数形参 list 的类型是整型指针,形参n和x的类型是int,函数的类型是int。
输出格式语句:printf(“index = %d\n”, );
输入输出示例:括号内为说明,无需输入输出
代码:
#include
#define MAXN 10
int search( int list[], int n, int x );
int main()
{
int r,m;
scanf(“%d”,&r);
for(m=1;m<=r;m++){
int i, index, n, x;
int a[MAXN];
scanf(“%d”, &n);
for( i = 0; i < n; i++ )
scanf(“%d”, &a[i]);
scanf(“%d”, &x);
index = search( a, n, x );
if( index != -1 )
printf(“index = %d\n”, index);
else
printf(“Not found\n”);
}
return 0;
}
/* 你的代码将被嵌在这里 */
int search(int list[],int n,int x)
{
int i,j;
int count=-1;
for(i=0;i<n;i++)
{
if(list[i]==x)
{
count=i;
break;
}
}
if(count==-1)
{
return -1;
}
else
{
return count;
}
}