使用switch-case结构来计算键入数字的次数

时间:2018-01-22 10:37:18

标签: c character-encoding

创建一个C程序,计算每个数字0-4的输入次数。使用switch - case构造。使用default计算其他字符的数量。打印键入特定数字的次数。

这是我的代码:

int main()
{
    int a;
    int num_0 = 0;
    int num_1 = 0;
    int num_2 = 0;
    int num_3 = 0;
    int num_4 = 0;
    int num_other = 0;
    printf("Input something\n");

    while ((a = getchar()) != EOF)
    {
        switch (a)
        {
        case 0:
            num_0++;break;
        case 1:
            num_1++;break;
        case 2:
            num_2++;break;
        case 3:
            num_3++;break;
        case 4:
            num_4++;break;
        default:
            num_other++;break;
        };

    }
    printf("0 has been typed %d", num_0);printf(" times\n");
    printf("1 has been typed %d", num_1);printf(" times\n");
    printf("2 has been typed %d", num_2);printf(" times\n");
    printf("3 has been typed %d", num_3);printf(" times\n");
    printf("4 has been typed %d", num_4);printf(" times\n");
    printf("other characters have been typed %d", num_other);printf(" times\n");

    return 0;
}

无论我输入什么,包括0,1,2,3,4在内的所有数字都被计为其他字符。有人能告诉我为什么我的代码没有用。

4 个答案:

答案 0 :(得分:4)

switch (a)会比较a的代码。如果你输入数字,它应该是;

    case '0':
        num_0++;break;
    case '1':
        num_1++;break;
  ...

开启字符值而不是整数(0的int值不为0,例如ASCII为48,但是我们不直接使用该值,所以它是完全便携的)

可能更好的做法是创建一个表:

int count[10] = {0};

....
a -= '0';  // removes the offset
if ((a >= 0) && (a < 10))  // check bounds
{
    count[a]++;
}

答案 1 :(得分:0)

您的答案位于man getchar强调我的

  

GStreamer从流中读取下一个字符,将其作为fgetc()强制转换为unsigned char,或者在文件末尾或错误时返回int。< /强>

     

EOF等同于getc(),但它可以实现为一个不止一次评估流的宏。

     

fgetc()相当于getchar()

之后,角色的 数字表示 不必与字符值相同(并且大多数情况下不是),即字符{{1 (getc(stdin))没有0in ASCII encoding的数值,它的小数值为'0'

因此,要计算字符0,您应将48值设置为'0',而不是case

答案 2 :(得分:0)

a = getchar()

当您读取字符时,存储在变量中的值是ASCII值。键入1时,存储在a中的值为49。

switch (a)
{
    case 1:
    num_0++;
    break;
}

在此代码中,您将与ASCII值49(ASCII值为1)进行比较,其中ASCII值为1,比较返回false。 同样地,所有条件都给出了错误,并且是默认情况。

答案 3 :(得分:0)

您的代码中存在一些错误。

1)您正在通过getchar()函数获取输入,因此它在输入中需要字符。

2)将输入变量'a'作为char而不是int。

3)在案例选项中标记单引号,例如案例'1',因为您将输入作为字符,因此您必须标记单引号。