| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 470 人关注过本帖
标题:菜菜求解
取消只看楼主 加入收藏
simbahuang20
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-7-3
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
菜菜求解
我在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
simbahuang20
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-7-3
收藏
得分:0 
多谢二位了!都纠结了两天了我
2010-07-21 08:14
快速回复:菜菜求解
数据加载中...
 
   



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

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