时间限制:1 秒
内存限制:32 兆
- 题目描述:
-
输入一个数n,然后输入n个数值各不相同,再输入一个值x,输出这个值在这个数组中的下标(从0开始,若不在数组中则输出-1)。
- 输入:
-
测试数据有多组,输入n(1<=n<=200),接着输入n个数,然后输入x。
- 输出:
-
对于每组输入,请输出结果。
- 样例输入:
-
21 30
- 样例输出:
-
-1
#include
#include using namespace std;int main(){ int buf[202]; int n; while(scanf("%d",&n)!=EOF) { for(int i=0; i