私は数日前からコーディングをしており、練習を始めることにしました。 5つの項目の合計を計算し、税金を計算するもの。 この特定の練習では、アイテムの名前と価格を表示することに成功しましたが、消費税と合計は表示されません。私はこれが非常に基本的な問題であることを知っています。私はちょっと試してみることを試みました。誰もが計算部分が行く限り、私が逃しているものを見つけることができますか?ありがとうございます。消費税の計算と合計
#include <iostream>
using namespace std;
float tax = 0.07;
string item1,item2,item3,item4,item5;
float price1,price2,price3,price4,price5;
int main()
{
cout<<" please enter the name of the first item \n";
cin>> item1;
cout<<" please enter the name of second item \n";
cin>> item2;
cout<<" plrease enter the name of the third item \n";
cin>> item3;
cout<<" please enter the name of the fourth item \n";
cin>> item4;
cout<<" please enter the name of the fifth item \n";
cin>> item5;
cout<<" please enter the price for the first item \n";
cin>> price1;
cout<<" please enter the price for the second item \n";
cin>> price2;
cout<<" please enter the price for the third item \n";
cin>> price3;
cout<<" please enter the price for the fourth item \n";
cin>> price4;
cout<<" please enter the price for the fifth item \n";
cin>> price5;
float subtotal = 0;
float saletax = 0;
float grandtotal = 0;
subtotal = price1 + price2 + price3 + price4 + price5;
saletax = subtotal * tax;
grandtotal = subtotal + saletax;
cout<<"my shopping list \n";
cout<<"================\n";
cout<<item1<<" "<<"$"<<price1 <<endl;
cout<<item2<<" "<<"$"<<price2 <<endl;
cout<<item3<<" "<<"$"<<price3 <<endl;
cout<<item4<<" "<<"$"<<price4 <<endl;
cout<<item5<<" "<<"$"<<price5 <<endl;
正確にはどのような問題がありますか?あなたは間違った出力を得ていますか?エラー? – Mureinik
'main()'の全てをコピーしていないので、不足している部分の問題を説明できません。 – drescherjm
エラーは表示されません。ちょうどそれは私に合計を与えていない。だから私が5つのアイテムとその価格を取得すると、価格は名前の横に表示されますが、総額や消費税は表示されません。 – ReMaKe