oj---九度oj---1052

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj---九度oj---1052相关的知识,希望对你有一定的参考价值。

 

 

#include<cstdio>
#include<cstring>
int buf[205];

int main(){
    int n; 
    int x;
    while(scanf("%d",&n)!=EOF){
        for(int i=0;i<n;i++){
            scanf("%d",&buf[i]);
        }
        scanf("%d",&x);
        int res=-1;
        for(int i=0;i<n;i++){
            if(x==buf[i]){
                res=i;
                break;
            }
        }
        printf("%d\n",res);
    }
    return 0;
}

 

以上是关于oj---九度oj---1052的主要内容,如果未能解决你的问题,请参考以下文章

九度oj 题目1397:查找数段

九度OJ-题目1009:二叉搜索树

九度OJ平台练习 —— 题目1009

九度oj1002

oj---九度oj---1061

oj---九度oj---1433