Question: What is wrong, if anything, with the following code? double price = 0; cout < < Item price: ; cin >> price; do { cout
What is wrong, if anything, with the following code?
double price = 0;
cout << "Item price: ";
cin >> price;
do
{
cout << "Total cost: $" << price + price * .05 << endl;
cout << "Item price: ";
} while (price > 0);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
