授業料の単位と学部または大学院のクラスを要求するプログラムを作成しようとしています。ユーザーは単位数を入力し、次にU
学部またはG
大学院を入力する必要があります。条件ステートメントに問題があります。ユーザーが を入力U
すると、学部の単位の価格が計算され、大学院と同様に出力されます。IF条件でエントリーしようとしてU
いますが、どちらか一方の価格か他方が出力されます。
#include <stdlib.h>
#include <iostream.h>
int main ()
{
const double Under = 380.00 ;
const double Grad = 395.00 ;
char U , G ;
double First, Second, Third, Fourth, Fifth, Sixth ;
cout << endl << endl ;
cout << " To calculate your tuition enter the amount of credits, then enter type of" ;
cout << endl ;
cout << " classes." ;
cout << endl << endl ;
cout << " Enter number of credits. " ;
cin >> First ;
cout << endl << endl ;
cout << " Enter U for Undergraduate or G for Graduate: " ;
cin >> Second ;
cout << endl << endl ;
cout << " Your tuition total is: " ;
Third = First * Under ;
Fourth = First * Grad ;
if ( Second == U )
cout << Third ;
else
cout << Fourth ;
cout << endl << endl ;
system ("Pause");
}