多个字符串比较大小
/*从键盘上输入5个字符串(约定:每个字符串中字符数≤80字节),对其进行升序排序并输出。编程可用素材:printf("Input 5 strings:\n")...、printf("---------------------------\n")。
程序的运行效果应类似地如图1所示,图1中的
hello
my
friend
Are you ready?
help!
是从键盘输入的内容。
Input 5 strings:
hello
my
friend
Are you ready?
help!
---------------------------
Are you ready?
friend
hello
help!
*/