题解 | #查找# java易理解版本

查找

https://www.nowcoder.com/practice/d93db01c2ee44e8a9237d63842aca8aa

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextInt()) { // 注意 while 处理多个 case
           int n=in.nextInt();
           int[] nums=new int[n];
           for(int i=0;i<n;i++){
                nums[i]=in.nextInt();
           }
           int m=in.nextInt();
           int[] targets=new int[m];
           for(int j=0;j<m;j++){
                targets[j]=in.nextInt();
           }
           for(int target:targets){
                boolean found=false;
                for(int num:nums){
                    if(num==target){ 
                        found=true;
                        break;
                    }
                }
                if(found) System.out.println("YES");
                else System.out.println("NO");
           }
        }
    }
}

全部评论

相关推荐

点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务