[b]1-11 你准备如何测试单词计数程序? 如果程序中存在某种错误, 那什么样的输入最可能发生这类错误呢?[/b]
[quote]
连续的分隔符 (' ', '\n', '\t') 会重复计算
[/quote]
[b]1-12 编写一个程序, 以每行一个单词的形式打印输出.[/b]
[quote]
[i][b]hello world[/b][/i]
hello
world
[i][b]^Z[/b][/i]
Process returned 0 (0x0) execution time : 6.068 s
[/quote]
[b]1-13 编写一个程序, 打印输入中单词长度的直方图. 水平方向的直方图比较容易绘制, 垂直方向的直方图则要困难些.[/b]
[color=darkred](未完成)[/color]
[b]1-14 编写一个程序, 打印输入中各个字符出现频度的直方图.[/b]
[color=darkred](未完成)[/color]
[quote]
连续的分隔符 (' ', '\n', '\t') 会重复计算
[/quote]
[b]1-12 编写一个程序, 以每行一个单词的形式打印输出.[/b]
#include <stdio.h>
int
main()
{
int c;
while ((c = getchar()) != EOF) {
/* '\n' 不用特别处理 */
if (c == ' ' || c == '\t') {
putchar('\n');
} else {
putchar(c);
}
}
return 0;
}
[quote]
[i][b]hello world[/b][/i]
hello
world
[i][b]^Z[/b][/i]
Process returned 0 (0x0) execution time : 6.068 s
[/quote]
[b]1-13 编写一个程序, 打印输入中单词长度的直方图. 水平方向的直方图比较容易绘制, 垂直方向的直方图则要困难些.[/b]
[color=darkred](未完成)[/color]
[b]1-14 编写一个程序, 打印输入中各个字符出现频度的直方图.[/b]
[color=darkred](未完成)[/color]