私は C を学ぼうとしていて、VAT を計算するコードをコピーしました > ユーザーが「はい」と答えた場合は再計算し、「いいえ」と答えた場合は終了するように修正しました。驚いたことに、答えが「はい」の場合、ユーザーにアイテムのコストを入力するように要求するため、最初に移動することになっているという点で、奇妙な動作をします。代わりに、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 ループを使用するバリアントがあります。同じように動作します。この動作の理由はありますか? ジローレ・ムンバ