标签:输入格式 条件 printf mamicode head 情况 info class stdio.h
本题要求从输入的N个整数中查找给定的X。如果找到,输出X的位置(从0开始数);如果没有找到,输出“Not Found”。
输入在第一行中给出两个正整数N(≤20)和X,第二行给出N个整数。数字均不超过长整型,其间以空格分隔。
在一行中输出X的位置,或者“Not Found”。
5 7 |
---|
3 5 7 1 9 |
2 |
---|
5 7 |
---|
3 5 8 1 9 |
Not Found |
---|
#include <stdio.h>
int main()
{
int N,X,i,j=0;
scanf("%d%d",&N,&X);
int a[N];
for(i=0;i<N;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<N;i++)
{
if(a[i]==X)
{
printf("%d\n",j);
break;
}
j++;
}
if(j==N)
printf("Not Found");
return 0;
}
问题:一开始忘记了没有与X相等数的情况。、
解决方案:仔细的看了一下自己的代码与题目的条件,发现了问题所在。
标签:输入格式 条件 printf mamicode head 情况 info class stdio.h
原文地址:https://www.cnblogs.com/Leehomwang/p/10451880.html