码迷,mamicode.com
首页 > 其他好文 > 详细

oj---九度oj---1052

时间:2017-06-24 21:47:54      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:can   class   ring   九度oj   ==   include   std   res   str   

 

 

#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

标签:can   class   ring   九度oj   ==   include   std   res   str   

原文地址:http://www.cnblogs.com/kprac/p/7074469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!