for (int i = 0; i < in.length ; i++) {
Thread.sleep(1000);
if (i == 6) {
System.out.println(hm.get(in[i]) + "被点名!");
}else {
System.out.println(hm.get(in[i]));
}
}
System.out.println("s键退出,任意键继续!");
//String s = sc.nextLine();
if (sc.nextLine().equals("s" )) {
break;
}