如何计算C中每行输入的单词

时间:2017-01-17 20:51:21

标签: c string

我正在尝试创建一个程序,以便对每一行的单词进行计数。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define NUM_LINES 50

int main()
{
char text[NUM_LINES];
int count = 0;
int nw = 0;
char *token;
char *space = " ";
printf("Enter the text:\n");

while (fgets(text, NUM_LINES, stdin)){

    token = strtok(text, space);

    while (token != NULL){

        if (strlen(token) > 0){
            ++nw;
        }
        token = strtok(NULL, space);
    }


    if (strcmp(text , "e") == 0 || strcmp(text , "e\n") == 0){
        break;
    }


}
printf("%d words", nw-1);

return 0;
}

例如,如果输入为:

Hello my name is John
I would like to have a snack
I like to play tennis
e

我的程序输出总字数(在这种情况下为17)我如何单独计算每一行的字数。所以我想要的输出是&#34; 5 7 5&#34;在这个例子中。

1 个答案:

答案 0 :(得分:4)

  

如何单独计算每一行的单词?

只需添加本地计数器line_word_count

建议扩展分隔符列表以处理最后一个单词后面的空格。

char *space = " \r\n";

while (fgets(text, NUM_LINES, stdin)){
    int line_word_count = 0;
    token = strtok(text, space);
    while (token != NULL){
        if (strlen(token) > 0){
            line_word_count++;
        }
        token = strtok(NULL, space);
    }
    if (strcmp(text , "e") == 0 || strcmp(text , "e\n") == 0){
        break;
    }
    printf("%d ", line_word_count);
    nw += line_word_count; 
}
printf("\n%d words\n", nw);