| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1059 人关注过本帖
标题:没有stdbool.h, 我只有这样编, 但是。。。
取消只看楼主 加入收藏
forrest0227
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-12-10
收藏
 问题点数:0 回复次数:1 
没有stdbool.h, 我只有这样编, 但是。。。
#include<stdio.h>

int main(void)
{
char text1[]="I'm a big man. ";
char text2[]="in this little. ";
int countWords(char string[]);

printf("%s-wordsnumber=%i\n", text1, countWords(text1) );
printf("%s-wordsnumber=%i\n", text2, countWords(text2) );
return 0;
}


int alphabetic(char c)
{
if( (c>='a' && c<='z')||(c>='A' && c<='Z') )
  return 1;
else return 0;
}


int countWords(char string[])
{
int alphabetic(char c), i, wordcount=0,
                  lookingforword=1;

for(i=0; string[i]!='\0'; i++)
{
    if(alphabetic(string[i]) )
    {
        if(lookingforword=1)
        {
            wordcount++;
            lookingforword=0;
        }else lookingforword=0;
        
    }else lookingforword=1;
    }
    return wordcount;
}


到i=6的时候, lookingforword=0了,i=7的时候, 电脑又跟我把它还原成1,
不知道如何是好啊!
搜索更多相关主题的帖子: stdbool 
2008-01-15 22:45
forrest0227
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-12-10
收藏
得分:0 
接上
功能是计算text1, text2的单词数目。
2008-01-15 22:49
快速回复:没有stdbool.h, 我只有这样编, 但是。。。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029471 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved