鱼C论坛

 找回密码
 立即注册
查看: 1009|回复: 2

[已解决]c语言 记录输入的每个数(0到9)的次数

[复制链接]
发表于 2020-4-26 16:13:21 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
记入输入的每个数(0到9)的次数。
代码如下,没有error 没有warming,但无法得出正确结果

# include<stdio.h>
int main()
{
        const int number = 10;
        int x;
        int count[number];
        int i;
        for(i=0; i<number; i++)
        {
                count[i]=0;
        }
        scanf("%d", &x);
        while(x!=1)
        {
                if( x>=0 && x<=9 )
                {
                        count[x]++;
                }
                scanf("%d", &x);
        }
        for(i=0; i<number; i++)
        {
                printf("%d:%d\n", i, count[i]);
        }
        return 0;
}
最佳答案
2020-4-26 17:02:47
程序没问题啊,只是无法记录1而已,因为一旦输入1,程序就退出循环了,
而且输入的若是超过一位数,是不会被记录的,没输入一位数就需要回车一下
若想连续输入,应该用%c而不应该用%d。
# include<stdio.h>
int main()
{
        const int number = 10;
        char x;
        int count[number];
        int i;
        for(i=0; i<number; i++)
        {
                count[i]=0;
        }
        scanf("%c", &x);
        while(x!='\n')
        {
                if( x>='0' && x<='9' )
                {
                        count[x-'0']++;
                }
                scanf("%c", &x);
        }
        for(i=0; i<number; i++)
        {
                printf("%d:%d\n", i, count[i]);
        }
        return 0;
}

运行:
输入内容:1112233344445666778900
输出结果:
0:2
1:3
2:2
3:3
4:4
5:1
6:3
7:2
8:1
9:1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-26 16:18:38 | 显示全部楼层
题目详细描述一下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-26 17:02:47 | 显示全部楼层    本楼为最佳答案   
程序没问题啊,只是无法记录1而已,因为一旦输入1,程序就退出循环了,
而且输入的若是超过一位数,是不会被记录的,没输入一位数就需要回车一下
若想连续输入,应该用%c而不应该用%d。
# include<stdio.h>
int main()
{
        const int number = 10;
        char x;
        int count[number];
        int i;
        for(i=0; i<number; i++)
        {
                count[i]=0;
        }
        scanf("%c", &x);
        while(x!='\n')
        {
                if( x>='0' && x<='9' )
                {
                        count[x-'0']++;
                }
                scanf("%c", &x);
        }
        for(i=0; i<number; i++)
        {
                printf("%d:%d\n", i, count[i]);
        }
        return 0;
}

运行:
输入内容:1112233344445666778900
输出结果:
0:2
1:3
2:2
3:3
4:4
5:1
6:3
7:2
8:1
9:1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 18:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表