publicstaticvoidmain(String[] args)throws IOException { BufferedReaderbufferedReader=newBufferedReader(newInputStreamReader(System.in)); intn= Integer.parseInt(bufferedReader.readLine()); Student[] students = newStudent[n]; for (inti=0; i < n; i++) { String[] strings = bufferedReader.readLine().split(" "); students[i] = newStudent(strings[0], strings[1], strings[2]); }
intm= Integer.parseInt(bufferedReader.readLine()); String[] test = bufferedReader.readLine().split(" "); for (inti=0; i < m; i++) { StringfindTestSite= test[i];