import java.util.*;
public class Strsort {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in=new Scanner(System.in);
int a=in.nextInt();
String e=in.nextLine();
String c=in.nextLine();
String d=in.nextLine();
String[] b= {e,c,d};
Arrays.sort(b);
for(int i=0;i<a;i++)
{
System.out.println(b[i]);
}
}
}
//题目:用Java编写一个能对一组字符串按字典序升序排序的程序 输入为N和N行字符串,
//需要按行输出字符串升序排序的结果 如输入 3 Abc Abe Abd 输出: Abc Abd Abe
添加回答
举报
0/150
提交
取消