超级鸡杰 发表于 2020-11-7 10:39:44

学校的作业,找了好久找不出错误

3.修改P39的程序upc.c,使用户可以一次输入11位数字,而不用先录入1位,再录入5位,最后再录入5位。
Enter the first 11 digits of a UPC: 05150024128
Check digit: 8
题目要求时这样的,可我运行的结果都是9,找不出错误

#include<stdio.h>
int main(void)
{
        int a,s,d,f,g,h,j,k,l,z,x,c,v,b;
       
        printf("Enter the first 11 digits of a UPC:");
        scanf("%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%",&a,&s,&d,&f,&g,&h,&j,&k,&l,&z,&x);
       
        v=a+d+g+j+l+x;
        b=s+f+h+k+z;
      printf("check digit:%d",9-((3*v+b-1)%10));
       
        return 0;       
}

xieglt 发表于 2020-11-7 10:50:35


scanf("%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%.1d%",&a,&s,&d,&f,&g,&h,&j,&k,&l,&z,&x);

改成

scanf("%1d%1d%1d%1d%1d%1d%1d%1d%1d%1d%1d%",&a,&s,&d,&f,&g,&h,&j,&k,&l,&z,&x);

jackz007 发表于 2020-11-7 11:15:40

输入1位整数的格式描述符是 "%1d"不是 "%.1d"
#include<stdio.h>
int main(void)
{
      int d , i , k , s , s1 , s2                  ;
      printf("Enter the 11 digits of a UPC : ")      ;
      for(k = 0 ; k < 11 ; k ++) scanf("%1d" , & d) ;
      for(s1 = 0 , i = 0 ; i < 11 ; i += 2) s1 += d ;
      for(s2 = 0 , i = 1 ; i < 11 ; i += 2) s2 += d ;
      s = s1 * 3 + s2                                  ;
      printf("Check digit: %d\n" , 9 - ((s - 1) % 10)) ;
}
      编译、运行实况:
D:\00.Excise\C>g++ -o x x.c

D:\00.Excise\C>x
Enter the 11 digits of a UPC : 01380015173
Check digit: 5

D:\00.Excise\C>x
Enter the 11 digits of a UPC : 05150024128
Check digit: 8

D:\00.Excise\C>

超级鸡杰 发表于 2020-11-7 23:14:36

xieglt 发表于 2020-11-7 10:50
改成

谢谢

超级鸡杰 发表于 2020-11-7 23:16:26

jackz007 发表于 2020-11-7 11:15
输入1位整数的格式描述符是 "%1d"不是 "%.1d"

      编译、运行实况:

谢谢
页: [1]
查看完整版本: 学校的作业,找了好久找不出错误