c语言中统计单词数目程序

 

1、

#include <stdio.h>
#include <ctype.h>
#include <stdbool.h>
#define STOP ‘|‘

int main(void)
{
    char ch;
    char prep;
    long n_ch = 0L;
    int n_lines = 0;
    int n_words = 0;
    int n_p_line;
    bool inword = false;
    
    while((ch = getchar()) != STOP)
    {
        n_ch++;
        if(ch == \n)
            n_lines++;
        if(!isspace(ch) && !inword)
        {
            inword = true;
            n_words++;
        }
        if(isspace(ch) && inword)
            inword = false;
        prep = ch;
    }
    if(prep != \n)
        n_p_line = 1;
    
    printf("n_ch    : %ld\n", n_ch);
    printf("n_lines : %d\n", n_lines);
    printf("n_words : %d\n", n_words);
    printf("n_p_line: %d\n", n_p_line);
    
    return 0;
}

c语言中统计单词数目程序

 

c语言中统计单词数目程序

上一篇:Java调用BCP导入数据到数据库解决标识列ID问题


下一篇:C语言 十进制和二进制相互转换 - C语言零基础入门教程