求援,程序改造编写一个函数,函数功能:在n个英语单词中查找是否有要查找的单词,如果该单词存在其中,返回所在的位置和标志1,若没有找到,返回所在的位置为结尾和标志
编写一个函数,函数功能:在n个英语单词中查找是否有要查找的单词,如果该单词存在其中,返回所在的位置和标志1,若没有找到,返回所在的位置为结尾和标志0。#include"stdio.h"
#define N 10
#include<time.h>
int Find(int n,int a[])
{
time_t t;
time(&t);
printf("%s 2016053303 刘金林\n",ctime(&t));
int i=0;
int flag=0;
for(i=0;i<10;i++)
{
if(n==a[i]) flag=i;
}
return flag;
}
int main()
{
int a[10]={1,6,3,4,5,6,7,8,9,10};
int n;
scanf("%d",&n);
printf("位置:%d\n",Find(n,a));
}