【BIG_FG_CSDN】1093: 数组指针27:查找元素

输入n(n<100)个整数(以0结束),存放在一维数组中,再输入一个整数x,

在数组中查找指定元素x。

若数组中存在x,则输出x在数组第一次出现的下标,
若数组中不存在x,则输出-1。要求在数组中查找x的过程用一个函数实现。

#include 

using namespace std;

int f(int s[],int n,int m)
{
    int i;
    for(i=0;i<=m;i++)
        if(s[i]==n)
            return i;
    return -1;
}

int main()
{
    int n,i=0,s[100];
    cin>>s[i];
    while(s[i])
    {
        i++;
        cin>>s[i];
    }
    cin>>n;
    cout<

你可能感兴趣的:(数据结构,算法)