第一题:字符数组字典序 100% public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(reader.readLine()); String[] as = reader.readLine().split(" "); Arrays.sort(as, (s1, s2) -...