统计字符串中单词的个数

判断的依据是 空格' '字符
统计字符串中单词的个数 #include  " stdio.h "
统计字符串中单词的个数#include 
" conio.h "
统计字符串中单词的个数#include 
" string.h "
统计字符串中单词的个数
int  count_words( char  str[]);
统计字符串中单词的个数
void  main()
统计字符串中单词的个数
{
统计字符串中单词的个数  
int n;
统计字符串中单词的个数  
char s[80];
统计字符串中单词的个数  clrscr();
统计字符串中单词的个数  printf(
"Input a string:");
统计字符串中单词的个数  gets(s);
统计字符串中单词的个数  n
=count_words(s);
统计字符串中单词的个数  printf(
"Word number is %d",n);
统计字符串中单词的个数
统计字符串中单词的个数}

统计字符串中单词的个数
统计字符串中单词的个数
int  count_words( char  str[])
统计字符串中单词的个数
{
统计字符串中单词的个数  
int k,num=0;
统计字符串中单词的个数  k
=strlen(str);
统计字符串中单词的个数  
do{
统计字符串中单词的个数    k
--;
统计字符串中单词的个数  }
while(str[k]==' ');
统计字符串中单词的个数  str[k
+1]='\0';
统计字符串中单词的个数  k
=0;
统计字符串中单词的个数  
while(str[k]==' ') k++;
统计字符串中单词的个数  
if(str[k]!='\0') num=1;
统计字符串中单词的个数  
while(str[k]!='\0')
统计字符串中单词的个数    
{
统计字符串中单词的个数      
if(k>0 && str[k]==' ' && str[k-1]!=' ')
统计字符串中单词的个数        num
++;
统计字符串中单词的个数      k
++;
统计字符串中单词的个数    }

统计字符串中单词的个数  
return num;
统计字符串中单词的个数}

你可能感兴趣的:(字符串)