lucy6666 发表于 2020-9-27 20:18:19

小白求助 写一个可以接受五个单词的代码然后依次打印

写一个草图代码,接收5个单词的输入,然后按升序打印出来
像下面所示一样
请问该怎么写 麻烦了

Enter the 1th Word-->red
Enter the 2th Word-->orange
Enter the 3th Word-->yellow
Enter the 4th Word-->green
Enter the 5th Word-->blue
After Sorting
blue
green
orange
red
yellow
Enter the 1th Word-->

诶呀~ 发表于 2020-10-1 22:39:38

这个可以把输入的字符放进list里面,然后用list.sort(),打印就行了。list的sort会自动排序的
页: [1]
查看完整版本: 小白求助 写一个可以接受五个单词的代码然后依次打印