gpt4 book ai didi

C goto循环不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 07:24:37 26 4
gpt4 key购买 nike

我正在尝试学习 C,我复制了一个计算增值税的 我修改了它以在用户回答"is"时重新计算,如果回答“否”则退出。令我惊讶的是,它的行为很奇怪,如果答案是肯定的,它应该从头开始要求用户输入商品成本。相反,它希望在按下 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

我知道在 C 语言(以及 Fortran 语言)中不鼓励使用 goto 结构。我有一个使用 do-while 循环的变体。它的行为相同。任何想法为什么会出现这种行为?齐洛尔蒙巴

最佳答案

你不能在 C 中用 == 比较字符串,所以这是错误的:

if(answer==reply)

你需要使用strcmp():

if (strcmp(answer, reply) == 0)

strcmp() 要求两个参数都是以 null 结尾的字符串。您永远不会向 answer 添加空终止符;您应该将其初始化为:

char answer[] = { '\0', '\0' };

或者,您可以将它们声明为单个字符,而不是将字符串用于 reply 和 answer:

char reply = 'y';
char answer;

然后你可以使用==来比较它们。

关于C goto循环不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19339723/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com