#include "stdio.h"
int main(void)
{
int num=0,word=0;
char c;
printf("input the string:\n");
while((c=getchar())!='\n')
{
if(word==0&&c!=' '&&c>='a'&&c<='z'||c>='A'&&c<='Z')
{
num++;
word=1;
}
else if(word==1&&c==' ')
word=0;
}
printf("\nthe string have %d words\n",num);
return 0;
}
图片附件: 游客没有浏览图片的权限,请
登录 或
注册