Webから編集したコードからの単純な通貨コンバータープログラムと、入力したswitchステートメントをまとめました。VisualStudioでプログラムを実行すると、次のようになります。
printf("Would you like to make another conversion? y/n\n");
fflush(stdin);
scanf("%c",&marker);
入力を待ってから、whileステートメントの先頭に戻るか、コンソールウィンドウを終了します。これを実行すると、これはMacでXcodeになります。「別の変換を行いますか...」が出力されますが、入力を待たずに、whileループに戻ります。
printf( "Would you like ... etcセクションを適切な場所に配置しますか?または、ユーザーからの入力を受け取った後にループを再度実行するためのより良い方法はありますか?'boolで何かを行う必要がありますか? 'ステートメント。クラスではまだそれほど進んでいません。
完全なコードを以下に示します。
#include <stdio.h>
int main ()
{
int choice;
float money;
float total;
char marker='y';
printf("\n\nCURRENCY CONVERSION\n");
printf("***Rates correct as of 26 NOV 12***\n");
printf("------------------------------------\n");
printf("1. Australian Dollar (AUD) 1.533=1 GBP\n");
printf("2. Euro (EUR) 1.235=1 GBP\n");
printf("3. Indian Rupee (INR) 89.494=1 GBP\n");
printf("4. Japanese Yen (JPY) 131.473=1 GBP\n");
printf("5. US Dollar (USD) 1.602=1 GBP\n");
printf("Enter the number for the currency to convert...");
while(marker!='n')
{
printf("\n\nWhat would you like to convert your money to? (1-5): ");
scanf("%d",&choice);
printf("\n\nHow much money do you want to convert? (GBP): ");
scanf("%f",&money);
switch(choice) {
case 1:
total = money * 1.533;
printf("\n\nYou will have %.2f Australian Dollars \n\n", total);
break;
case 2:
total = money * 1.235;
printf("\n\nYou will have %.2f Euros \n\n", total);
break;
case 3:
total = money * 89.494;
printf("\n\nYou will have %.2f Indian Rupees \n\n",total);
break;
case 4:
total = money * 131.473;
printf("\n\nYou will have %.2f Japanese Yen \n\n", total);
break;
case 5:
total = money * 1.602;
printf("\n\nYou will have %.2f US Dollars \n\n", total);
break;
default:
printf("You did not choose a correct option\n");
}
printf("Would you like to make another conversion? y/n\n");
fflush(stdin);
scanf("%c",&marker);
}
return 0;
}
寄せられた意見のコメントに感謝します。