2126: 查找数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Normal Judger
Creator:
Submit:184
Solved:79
Description
在一个有n个数的数组中,查找是否存在数x,如果存在则输出这个数,不存在输出'no'
输入:第一行为n,第二行为n个数,第三行为x
输出:存在输出这个数,不存在输出'no'
输入:第一行为n,第二行为n个数,第三行为x
输出:存在输出这个数,不存在输出'no'
Input
5
1 2 3 4 5
4
1 2 3 4 5
4
Output
4