统计文章中单词个数

2022-02-24 15:48:09 浏览数 (1)

代码语言:javascript复制
#include<stdio.h>
#include<assert.h>

int fun(const char* str)
{   
    assert(str != NULL);
    const char* p = str;
    int count = 0;//计数器
    while(*p != '')
    {
        if(*p != ' ' && (*(p 1) == ' ' || *(p 1) == ''))
        {
            count   ;
        }
        p  ;
    }
    retrun count;
}

0 人点赞