题目:编写一个程序,打印输入中单词的直方图。$ vim pt1.13.c 1 #include <stdio.h> 2 3 #define MAXHIST 15 /*max length of histogram*/ 4 #define MAXWORD 11 /*max length of a word*/ 5 #define IN 1 6 #de...
阅读全文
2009
07-28