码迷,mamicode.com
首页 > 其他好文 > 详细

抄了一个计算字符串个数的程序,一个很简单的代码。但是能看懂,也能掌握使用。原谅我菜,抽出一个小时看几段代码也好

时间:2019-05-09 00:27:49      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:return   ace   字符   first   代码   main   str   include   word   

#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;
 } 

抄了一个计算字符串个数的程序,一个很简单的代码。但是能看懂,也能掌握使用。原谅我菜,抽出一个小时看几段代码也好

标签:return   ace   字符   first   代码   main   str   include   word   

原文地址:https://www.cnblogs.com/redxi/p/10836041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!