抄了一个计算字符串个数的程序,一个很简单的代码。但是能看懂,也能掌握使用。原谅我菜,抽出一个小时看几段代码也好
Posted redxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了抄了一个计算字符串个数的程序,一个很简单的代码。但是能看懂,也能掌握使用。原谅我菜,抽出一个小时看几段代码也好相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
main()
{
char string[100];
int index,word=1;
char blank;
gets(string);
if(string[0]==‘\0‘)
{
printf("there is no char!\n");
}
else if(string[0]==‘ ‘)
{
printf("first char just is a blank!\n");
}
else
{
for(index=0;string[index]!=0;index++)
{
blank=string[index];
if(blank==‘ ‘)
{
word++;
}
}
printf("%d\n",word);
}
return 0;
}
以上是关于抄了一个计算字符串个数的程序,一个很简单的代码。但是能看懂,也能掌握使用。原谅我菜,抽出一个小时看几段代码也好的主要内容,如果未能解决你的问题,请参考以下文章