91学习

陪伴你每一天!

统计字符串中单词出现的个数

#include <stdio.h>


int main(){

char cString[100];

int iIndex,iWord=1;

char cBlank;

gets(cString);


if(cString=='\0'){

printf("There is no char!\n");

}

else if(cString[0]==' '){

printf("First char just is a blank!\n");

}

else{

for(iIndex=0;cString[iIndex]!='\0';iIndex++){

cBlank=cString[iIndex];

if(cBlank==' '){

iWord++;

}

}

printf("%d\n",iWord);

}

return 0;

}

加威信18790284560免费送POS机.jpg

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。