3085: 练75.3 日期排序
          Memory Limit:64 MB
          Time Limit:1.000 S
         
      
      
        
          Judge Style:Text Compare
          Creator:
      
      
          Submit:0
          Solved:0
      
Description
有一些日期,日期格式为 “
    MM/DD/YYYY”。n编程将其按日期大小排列。Input
输入第一行一个整$n$($1 < n ≤1000$),表示日期的个数。n接下来$n$行按照题目描述的格式输入$n$个日期。
      Output
输出从早到晚排序后的日期,一个日期占一行,日期输出的格式和输入一样。
        Sample Input Copy
8
01/26/1998
09/26/1927
01/05/1927
04/16/2024
08/08/1993
01/01/2019
06/22/1973
07/16/2030
          Sample Output Copy
01/05/1927
09/26/1927
06/22/1973
08/08/1993
01/26/1998
01/01/2019
04/16/2024
07/16/2030