import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); ArrayList<Integer>arr; while(sc.hasNext()){ int n=sc.nextInt(); if(n==-1)break; arr=new ArrayList<Integer>(); for (int i = 0; i < n; i++) { arr.add(sc.nextInt()); } int k=sc.nextInt(); for (int i = 0; i < k; i++) { if(arr.contains(sc.nextInt())) System.out.println("YES"); else System.out.println("NO"); } System.out.println(); } } }
0.0分
2 人评分
C二级辅导-等差数列 (C语言代码)浏览:628 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1059 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:530 |
分糖果 (C++代码)浏览:1537 |
WU-判定字符位置 (C++代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:913 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:582 |
大家好,我是验题君浏览:604 |
字符逆序 (C语言代码)浏览:675 |
C语言程序设计教程(第三版)课后习题12.6 (C语言代码)浏览:732 |