1.统计单词出现的次数:
编写程序统计一个英文文本文件中单词的出现次数,并将出现次数最多(次数排名前10)的单词和它们的出现次数按降序显示。
1.使用一个字典来存储包含了单词和它的次数的条目;
2.统计单词是不考虑大小写的,例如:认为Good与good是一个单词;
2.探究矩阵:
编写程序提示用户输入一个方阵的长度,将0和1随机填入方阵,打印这个方阵,并找出全0或全1组成的行、列和主对角线。
Enter the length of a square matrix:3
100
101
101
All 1's on column 0
All 0's on column 1
No same numbers on a row
No same numbers on the major diagonal
No same numbers on the sub-diagonal
1