摘要: 习题3-1分数统计(stat)任务一:任务一 1 #include <stdio.h> 2 3 int score[100]; 4 int main() 5 { 6 int m = 0; 7 while (scanf("%d",&m)!=EOF) 8 { 9 score[m] ++;10 }11 int max=score[0];12 for (int i=1;i<100;i++)13 {14 if (max<score[i])15 {16 max = score[... 阅读全文
posted @ 2013-03-02 11:03 EmacsTalk 阅读(289) 评论(0) 推荐(0) 编辑