为什么该ISBN检查代码将“ 0”变成45?

时间:2018-06-24 15:09:49

标签: c

您能帮我找出为什么数组中第二个0变成45的原因吗?

Screen shot of plain text

一切都很好,但是除了这个数字,结果都会出错。我不知道这是怎么回事。

这是我的代码:

 #include <stdio.h>

 int getuserchoice() {  
     int n;
     printf("---ISBN Validate---");
     printf("\n1-ISBN Checking");
     printf("\n2-Quit");
     printf("\nSelect: ");
     scanf("%d", &n);
     return n;
 }

 int main() {
     long a[10];
     long sum = 0;
     int i = 0, n = 1;
     long x;
     if (getuserchoice() == 1) {
         printf("\nEnter the values for ISBN number : ");
         scanf("%ld", &x);
         if (x > 0) {
             while (x > 0) {
                 a[i] = x % 10;
                 x = x / 10;
                 i++;
             }
         }

         for (i = 0; i < 10; i++)
             printf("%ld\t", a[i]);
         for (i = 0; i < 10; i++) {
             sum += a[i] * n;
             n++;
         }
         if (sum % 11 == 0)
             printf("\nISBN Status: Valid!");
         else
             printf("\nISBN Status: Invalid!");
     } else
             printf("\nSee you later!");
     getchar();
     return 0;
}

1 个答案:

答案 0 :(得分:1)

默认情况下,未初始化的数组包含垃圾(实际上是任何东西)。碰巧该特定元素包含45(令人惊奇,不是吗?)。

它保持45,因为在读取数字时,前导0会被丢弃(您应该将其作为字符串(C ++)或char []读取),因此您永远不会访问该特定数组元素来为其赋予有意义的值。

Here's SO post on how to initialize an array with 0s in C.