uq_55483890685


私信TA

用户名:uq_55483890685

访问量:796

签 名:

等  级
排  名 10134
经  验 1108
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#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 人评分

  评论区

  • «
  • »