Files
Story-With-Thanh/J05026 - DANH SÁCH GIẢNG VIÊN THEO BỘ MÔN.java
2022-12-15 23:51:04 +07:00

49 lines
1.3 KiB
Java

import java.util.*;
public class Main {
static String first(String s){
String[] a = s.split("\\s+");
String r = "";
for(String x:a){
r+=Character.toString(x.charAt(0)).toUpperCase();
}
return r;
}
static class ob {
String code, name, field, last;
public ob(int i, String name, String s){
code = "GV" + String.format("%02d", i);
String[] a = name.split("\\s+");
last = a[a.length - 1];
this.name = name;
String[] b = s.split("\\s+");
field = first(s);
}
public String toString() {
return code + ' ' + name + ' ' + field;
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
ArrayList<ob> a = new ArrayList<>();
sc.nextLine();
for(int i=0;i<n;i++){
a.add(new ob(i+1, sc.nextLine(), sc.nextLine()));
}
int q = sc.nextInt();
sc.nextLine();
while(q-->0){
String s = first(sc.nextLine());
System.out.printf("DANH SACH GIANG VIEN BO MON %s:\n", s.toUpperCase());
a.forEach(e -> {
if(e.field.compareTo(s) == 0) System.out.println(e);
});
}
}
}