Problem E: 数组---在数组中查找元素

Problem E: 数组---在数组中查找元素

Time Limit: 1 Sec   Memory Limit: 128 MB
Submit: 1389   Solved: 679
[ Submit][ Status][ Web Board]

Description

输入10个整数到一个长度为10的整型数组中,然后输入一个整数,查看该整数是否在刚才得到的数组中,如果在,输出“found”,如果不在,输出“not found”

Input

11 个整数

Output

如果第11个整数在前10个整数中,则输出found

如果第11个整数不在前10个整数中,则输出not found

Sample Input

1 2 3 4 5 6 7 8 9 10
5

Sample Output

found

HINT

#include 
#include 
 
int main()
{
    int i,a[11],x;
    for(i=0;i<10;i++)
        scanf("%d",&a[i]);
    scanf("%d",&x);
    for(i=0;i<10;i++)
        if(a[i]==x)
        {printf("found");
         return 1;
        }
    printf("not found");
    return 0;
}


你可能感兴趣的:(153,155,数组)