私はクリスチャンで、現在 C++ の初心者であり、学習しようとしていますが、限界に達していると思います。すでに他のことを試しましたが、プログラムを機能させることができないようです。これは私のコース要件の 1 つでもあり、これを修正する方法を理解するのに本当に苦労しています。
基本的に、ユーザーはステーション (a、b、c) を入力し、プログラムは料金を計算する必要がありますが、a、b、または c を入力した後、プログラムは 0.00000 を出力し、任意のキーが自動的にインターフェイスを閉じます。
これが私が使いたかったコードのサンプルです:
#include<stdio.h>
#include<conio.h>
main()
{
float fee, to, from, a, b, c;
printf("Enter your current station: ");
scanf("%f",&from);
printf("Enter the station you want to go: ");
scanf("%f",&to);
if((to == a && from == b))
a = 10;
b = 15;
fee = to + from;
printf("%f", fee);
if((to == b && from == a))
a = 10;
b = 15;
fee = to + from;
printf("%f", fee);
if((to == c && from == a))
a = 10;
c = 5;
fee = to + from;
printf("%f", fee);
if((to == a && from == c))
a = 10;
c = 5;
fee = to + from;
printf("%f", fee);
if((to == b && from == c))
a = 10;
c = 5;
fee = to + from;
printf("%f", fee);
getch();
}
読んでくれてありがとう、本当に感謝しています。