コードのwhileループから抜け出すのに問題があります。ユーザーがアイテムの入力を完了したら、qを押して終了します。これは機能せず、qはユーザーによって入力され、ループは中断されません。これを行うためのより良い方法もあれば、それは素晴らしいことです。
#include <stdio.h>
#include "CashRegister.h"
#include <stdlib.h>
#include <iostream>
#include <string>
using namespace std;
CashRegister::CashRegister(void)
{
}
CashRegister::~CashRegister(void)
{
}
void CashRegister::addItem(void)
{
string temp;
int k = 0;
int exit = 0;
CashRegister item[10];
for(int i = 0; i < 10; ++ i)
{
item[i].price = 0.00;
}
cout << "Enter price of items. Up to 10 maximum\n" << endl;
while(item[9].price != 0.00 || temp != "q")
{
cout << "Enter price of item number " << k + 1 << "\n" << endl;
cin >> temp;
cout << temp << endl;
double tempPrice = (double)atof(temp.c_str());
item[k].price = tempPrice;
cout << "Price of item number " << k + 1 << " is $" << item[k].price << endl;
++k;
}
}