C语言实验——单词统计

来源:互联网 发布:金十数据官网财经报告 编辑:程序博客网 时间:2024/06/05 01:19

C语言实验——单词统计

Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic

Problem Description

从键盘输入一行字符(长度小于100),统计其中单词的个数,各单词以空格分隔,且空格数可以是多个。

Input

输入只有一行句子。仅有空格和英文字母构成。

Output

单词的个数。

Example Input

stable marriage  problem Consists     of Matching members

Example Output

7
#include <stdio.h>int main(){ int n=1; char a=getchar(),b; while(a!='\n') { b=a; a=getchar(); if(b==' ' && a!=' ' && a!='\n') n++; } printf("%d\n",n);}

0 0
原创粉丝点击