解题思路:
注意事项:
参考代码:
#include <iostream>//C用户为<stdio.h>
#include <cctype>//c用户改为<ctype.h>
using namespace std;//c用户不用管这个
int main(){
char ch;
int count=0;
bool inword=false;
while((ch=cin.get())!=EOF){//c用户为(ch=getchar())!=EOF,注意()不能少,因为!=运算符优先级大于=
if(!isspace(ch)&&!inword)
{
inword=true;
count++;//开始统计单词
}
if(isspace(ch)&&inword)
inword=false;//达到单词末尾
}cout << count;
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:702 |
剪刀石头布 (C语言代码)浏览:1792 |
钟神赛车 (C语言代码)浏览:665 |
【计算直线的交点数】 (C语言代码)浏览:986 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:461 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:518 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:526 |
C语言训练-求车速 (C语言代码)浏览:850 |
采药 (C语言代码)浏览:960 |