我正在尝试学习 C,我复制了一个计算增值税的代码>我修改了它以重新计算用户是否回答是,如果回答否,则退出。令我惊讶的是,它以一种奇怪的方式表现,如果答案是肯定的,它应该去开始要求用户输入项目成本。相反,它希望在按下 y 后立即输入成本。下面的代码;
/* VAT Calculation*/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
float price_with_vat(float cost, float vat, int quant);
main()
{
float cost, vat, full_price;
int quant,count=0;
char answer[2];
char reply[2]={"y"};
x:
count=count+1;
printf("count= %d\n",count);
printf("Please enter the item cost:\n\n");
scanf("%f", &cost);
printf("\nPlease enter the quantity of product:\n");
scanf("%d", &quant);
printf("\nquantity=%d\n",quant);
/* exit(0); */
printf("\nPlease enter the VAT percentage:\n");
scanf("%f", &vat);
printf("\ncost=%6.2f quant=%d vat=%6.2f\n",cost, quant, vat);
/* exit(0); */
full_price = price_with_vat(cost, vat, quant);
printf("The total price is %6.2f\n\n",full_price);
printf("\nDo you want to perform another transaction? (y/n)\n");
scanf("%c\n", &answer);
if(answer==reply)
{
system("cls");
main();
}
else
return 0;
}
float price_with_vat(float cost, float vat, int quant)
i replace the part
if(answer==reply)
{
system("cls");
main();
}
else
和
if(answer==reply)
goto x
我知道 goto 构造在 C (以及 Fortran)中是不鼓励的。我有一个使用 do-while 循环的变体。它的行为相同。有什么想法为什么会出现这种行为?齐洛尔·蒙巴