为了练习变量声明,占位符和I / O调用,我在我用来学习的书中做了一个示例作业。但是,我一直遇到一个特定的问题,因为当我尝试为输入声明多个字符变量时,即使编译器没有捕获任何语法错误,程序执行时也只会返回一个字符变量。这是有问题的代码:
#include <stdio.h>
int main()
{
double penny=0.01;
double nickel=0.05;
double dime=0.1;
double quarter=0.25;
double value_of_pennies;
double value_of_nickels;
double value_of_dimes;
double value_of_quarters;
double TOTAL;
int P;
int N;
int D;
int Q;
char a,b;
//used "static char" instead of "char", as only using the "char" type caused a formatting error where only the latter character entered in its input would appear
printf("Please enter initials> \n");
printf("First initial> \n");
scanf("%s", &a);
printf("Second initial> \n");
scanf("%s", &b);
//"%s" was used as the input placeholder for type "char"
printf("%c.%c., please enter the quantities of each type of the following coins.\n", a, b);
printf("Number of quarters> \n");
scanf("%d", &Q);
printf("Number of dimes> \n");
scanf("%d", &D);
printf("Number of nickels> \n");
scanf("%d", &N);
printf("Number of pennies> \n");
scanf("%d", &P);
printf("Okay, so you have: %d quarters, %d dimes, %d nickels, and %d pennies.\n", Q, D, N, P);
value_of_pennies=penny*P;
value_of_nickels=nickel*N;
value_of_dimes=dime*D;
value_of_quarters=quarter*Q;
TOTAL=value_of_quarters+value_of_dimes+value_of_nickels+value_of_pennies;
printf("The total value of the inserted coins is $%.2lf. Thank you.\n", TOTAL);
//total field width omitted as to not print out any leading spaces
return(0);
}
这是转录输出(“a”,“e”,四个“1”是样本任意输入值:
Please enter initials>
First initial>
a
Second initial>
e
.e., please enter the quantities of each type of the following coins.
Number of quarters>
1
Number of dimes>
1
Number of nickels>
1
Number of pennies>
1
Okay, so you have: 1 quarters, 1 dimes, 1 nickels, and 1 pennies.
The total value of the inserted coins is $0.41. Thank you.
我输入了字符“a”和“e”作为char变量“a”和“b”的输入值,但只显示了“e”。另一方面,如果我在“char”变量声明中放置了“static”,则两个输入的char
值都将显示在相关的打印调用中。
为了将来的参考,我想问一下为什么会出现这样的事情,以及声明中“静态”字的价值。
(顺便说一句,我知道我可以简单地将“value_of _(插入硬币)”变量作为常量宏。)
答案 0 :(得分:2)
使用像
这样的定义char a,b;
写一个像
这样的陈述scanf("%s", &a);
scanf("%s", &b);
调用undefined behaviour。 %s
不是char
的格式说明符。使用错误的格式说明符可以并将导致UB。您应该使用%c
扫描 char
。
详细说明,
%s
格式说明符需要一个对应的参数,它是指向char
数组的指针。它scan
多个字符,直到遇到space
(空格字符,迂腐)或换行符或EOF。%c
格式说明符需要一个对应的参数,它是指向char
变量的指针。它只从输入缓冲区中读取一个char
。因此,对于%s
,如果您提供char
变量的地址,它将尝试访问超出分配的内存区域以写入扫描的数据,将调用UB。
在继续前进之前,您可能需要在printf()
,scanf()
和format specifiers上阅读更多内容。
答案 1 :(得分:0)
您使用了FAIL
的错误格式说明符。 char
使用char
而非%c
。就%s
而言,我对你的问题有点困惑。您在评论中说您正在使用static
,但我没有看到任何变量声明为static char
。