标题:菜菜求解
只看楼主
simbahuang20
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-7-3
结帖率:100%
已结贴  问题点数:20 回复次数:3 
菜菜求解
我在vc6中文企业版做的,在dev-c4.9.9.2也做了,都无法编译,说是有一处错误。可是我找不出来,麻烦各位大侠了!
#include <stdio.h>
#include <ctype.h>
#include <stbool.h>
#include <windows.h>
int main (void)
{
    char c;
    char prev;
    long n_chars=0L;
    int n_lines=0;
    int n_words=0;
    int p_lines=0;
    bool inword=1;
    printf ("Enter text to be analyzed:\n");
    prev='\n';
    while ((c=getchar())!=EOF)
    {
        n_chars++;
        if(c=='\n')
            n_lines++;
        if(!isspace(c)&&!inword)
        {
            inword=0;
            n_words++;
        }
        if(isspace(c)&&inword)
            inword=1;
        prev=c;
    }
    if(prev!='\n')
        p_lines=1;
    printf("characters=%ld,words=%d,lines=%d,",n_chars,n_words,n_lines);
    printf(partial lines=%d\n",p_lines);
        return 0;
}
搜索更多相关主题的帖子: 菜菜 求解 
2010-07-21 06:14
rainbow1
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:2
帖 子:277
专家分:839
注 册:2010-5-19
得分:10 
#include <stdio.h>
#include <ctype.h>
//#include <stbool.h>
//#include <windows.h>

int main (void)
{
    char c;
    char prev;
    long n_chars=0L;
    int n_lines=0;
    int n_words=0;
    int p_lines=0;
    bool inword=1;
    printf ("Enter text to be analyzed:\n");
    prev='\n';
    while ((c=getchar())!=EOF)
    {
        n_chars++;
        if(c=='\n')
            n_lines++;
        if(!isspace(c)&&!inword)
        {
            inword=0;
            n_words++;
        }
        if(isspace(c)&&inword)
            inword=1;
        prev=c;
    }
    if(prev!='\n')
        p_lines=1;
    printf("characters=%ld,words=%d,lines=%d,",n_chars,n_words,n_lines);
    printf("partial lines=%d\n",p_lines);
        return 0;
}

按上面标红的改。
2010-07-21 07:19
playmyself
Rank: 5Rank: 5
来 自:第3系4级宇宙空间
等 级:职业侠客
帖 子:76
专家分:399
注 册:2009-7-8
得分:10 
bool 用 int 代替为了兼容。
#include <stdio.h>
#include <ctype.h>
#include <windows.h>
int main (void)
{
    char c;
    char prev;
    long n_chars=0L;
    int n_lines=0;
    int n_words=0;
    int p_lines=0;
    int inword=1;
    printf ("Enter text to be analyzed:\n");
    prev='\n';
    while ((c=getchar())!=EOF)
    {
        n_chars++;
        if(c=='\n')
            n_lines++;
        if(!isspace(c)&&!inword)
        {
            inword=0;
            n_words++;
        }
        if(isspace(c)&&inword)
            inword=1;
        prev=c;
    }
    if(prev!='\n')
        p_lines=1;
    printf("characters=%ld,words=%d,lines=%d,",n_chars,n_words,n_lines);
    printf("partial lines=%d\n",p_lines);
        return 0;
}

无聊创造奇迹。
2010-07-21 07:46
simbahuang20
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-7-3
得分:0 
多谢二位了!都纠结了两天了我
2010-07-21 08:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-313567-1-1.html




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

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