Problem G: 单词表的排序

Problem G: 单词表的排序

Time Limit: 1 Sec  Memory Limit: 256 MB
Submit: 473  Solved: 81
[Submit] [Status] [Web Board] [Creator:]

Description

请将文本文件word.dic下载保存到当前目录下, 

要求编写C程序,对word.dic中的单词排序,并将排序结果显示在屏幕上。

特别注意,排序时忽略大小写,详见样例数据。

Input

实际的测试文件word.dic不超过3000行,每行包含一个单词(或词组),

每个单词的左侧没有空格之类的多余符号,每个单词(或词组)的总长度不超过30。

Output

输出排序后的单词(或词组),每个单词(或词组)占1行。

Sample Input Copy

例如,word.dic的内容为:
Zero
one
two
three
four
five
six
seven
eight
nine
ten

Sample Output Copy

eight
five
four
nine
one
seven
six
ten
three
two
Zero