jmu-Java-02基本语法-03-身份证排序 输入n,然后连续输入n个身份证号。 然后根据输入的是sort1还是sort2,执行不同的功能。输入的不是sort1或sort2,则输出exit并退出。 输入sort1,将每个身份证的年月日抽取出来,按年-月-日格式组装,然后对组装后的年-月-日升序输出。 输入sort2,将所有身份证按照里面的年月...
输出未能排序import java.util.Scanner;import java.util.Arrays;public class Main {public static void main(String[] args) {Scanner sc = new Scanner(System.in);int n =sc.nextInt();sc.nextLine();String[] ID =new String[n];for (int i=0;i<n;i++) {ID[i]=sc.nextLine();...