c程序设计语言练习1-11

你准备如何测试单词计数程序?如果程序中存在某种错误,那么什么样的输入最可能发现这类错误呢?(书中单词定义较宽松,是不含空格,制表符,换行符的连续字符序列)

#include <stdio.h>
#define IN 1 /* inside a word */
#define OUT 0 /* outside a word */

/* count lines, words, and characters in input */ main()
{
int c, nl, nw, nc, state;
state = OUT;
nl = nw = nc = 0;
while ((c = getchar()) != EOF) {
++nc;
if (c == '\n')
++nl;
if (c == ' ' || c == '\n' || c == '\t')
state = OUT;
else if (state == OUT) {
state = IN;
++nw; }
}
printf("%d %d %d\n", nl, nw, nc); }



究竟有什么错误啊,根本看不出来。

没人知道

if (c == ' ' || c == '\n' || c = '\t')
第三个是c=='\t'

假设你的输入中一行并没有完全输完但是这一行后面仍然接着换行符,就会造成nw的不准确,比如hello这个词可能在一行末尾写到hel,剩下的lo在下一行

14行的第三个打错了应该是==,希望采纳


可以查看手册:c语言-exp() 中的内容