标题:c程序 统计各个数字、空白符出现的次数,有错
取消只看楼主
水桃蜜蜜
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2016-5-9
结帖率:66.67%
已结贴  问题点数:40 回复次数:2 
c程序 统计各个数字、空白符出现的次数,有错
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int c,i,nwhite,nother;
    int ndigit[10];

    nwhite = nother = 0;
    for (i=0;i<10;++i)
    {
        ndigit[i]=0;
    }
    printf("--------------\n");
    while((c=getchar())!=EOF)
    {

        if(c>='0'&&c<='9')
        ++ndigit[c-'0'];
        else if(c==' '||c=='\n'||c=='\t')
            ++nwhite;
        else
            ++nother;
    }
    printf("digits =");
    for (i = 0; i<10;++i)
        printf("%d",ndigit[i]);
    printf(",white space = %d,other =%d\n",nwhite,nother);
    return 0;
}
编译器显示no error,但是编译后出不来结果
搜索更多相关主题的帖子: include c程序 统计 
2016-07-20 19:00
水桃蜜蜜
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2016-5-9
得分:0 
回复 2楼 大肥狗
是的,谢谢,为什么要按Ctrl+z啊,
还有ndigit[c-'0']为什么要这么写啊c不是int类型吗,为什么总要有‘’加在数字上呢
2016-07-20 19:41
水桃蜜蜜
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2016-5-9
得分:0 
会了,结贴了
2016-07-20 22:26



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




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

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