题解 | #找x#

找x

https://www.nowcoder.com/practice/069e2130430c41229ab25e47fa0949a6

#include<stdio.h>
#include<stdlib.h>
int main() {
    int n;
    while (scanf("%d", &n) != EOF) {
        int inf[n];
        for (int i = 0; i < n; i++) {
            scanf("%d", inf + i);
        }
        int x, result = -1;
        scanf("%d", &x);
        for (int i = 0; i < n; i++) {
            if (inf[i] == x)
                result = i;
        }
        printf("%d", result);
    }
    return 0;
}

全部评论

相关推荐

像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务