实验6-9 统计一行文本的单词个数 (15分)

本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。

输入格式:
输入给出一行字符。

输出格式:
在一行中输出单词个数。

输入样例:
Let’s go to room 209.

输出样例:
5

#include<stdio.h>
#include<stdbool.h>//提供bool类型
#include<ctype.h>//用到字符映射函数isspace判断是否为空格
#define STOP '\n'
int main()
{
    int n_word=0;
    char c;
    bool word_in=false;
    while((c=getchar())!=STOP){//c=getchar()外面的括号不能漏
        if(!word_in&&!isspace(c)){
            n_word++;
            word_in=true;
        }if(isspace(c))
        word_in=false;
    }printf("%d",n_word);
    
}

By Suki
2020/1/19

发布了29 篇原创文章 · 获赞 27 · 访问量 2952

猜你喜欢

转载自blog.csdn.net/Eumenides_Suki/article/details/104039432