蓝桥杯-BASIC-5 查找整数
给出一个包含n个整数的数列,问整数a在数列中的第一次出现是第几个。
第一行包含一个整数n。
第二行包含n个非负整数,为给定的数列,数列中的每个数都不大于10000。
第三行包含一个整数a,为待查找的数。
1 9 4 8 3 9
9
import java.util.Scanner;
public class 查找整数 {
//给出一个包含n个整数的数列,问整数a在数列中的第一次出现是第几个。
public static void main(String[] args) {
// TODO Auto-generated method stu
// Scanner sc=new Scanner(System.in);
// int n=sc.nextInt();
// boolean c=true;
// int[] arr=new int[n];
// for (int i = 0; i < arr.length; i++) {
// arr[i]=sc.nextInt();
// }
// int a=sc.nextInt();
// for (int i = 0; i <n; i++) {
// if(arr[i]==a) {
// System.out.println(i+1);
// c=false;
// break;
// }
// }
// if (c) {
// System.out.println("-1");
// }
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
boolean c=true;
int[] arr=new int[n];
for (int i = 0; i < arr.length; i++) {
arr[i]=sc.nextInt();
}
int c1=sc.nextInt();
for (int i = 0; i < arr.length; i++) {
if(arr[i]==c1) {
System.out.println(i+1);
c=false;
break;
}
}
if(c){
System.out.println("-1");
}
}
}
- 点赞
- 收藏
- 关注作者
评论(0)