import java.util.Scanner; /** * No.24 数当てゲーム */ public class No024_NumberHitGame { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); // 入力列数 int[] judge = new int[10]; for (int i=0; i