I have to write this program by 12 a.m. tonight and i need help writing this program below. I will work with whoever can give me help all night if that is what it takes


I'm trying to write a small code that will ask the user to choose between Orange county or Seminole county sales tax calculation.
- The user will also have the option to quit the program. (You can use 1, 2, and 3 respectively).
- If the incorrect choice is typed, display an error message and prompt the user to re-enter a choice.
- If the user selects one of the two counties, the program should prompt the user to enter the price of the item.
- The program must then calculate the sales tax according to the following:
- Orange county tax is 6.5%.
- Seminole county tax is 7.0%.
- Finally, the program must output the price, tax, and total amount.
- The process must continue until the user enters the option to quit the program.


Here is a bit of my code but i don't know what to do next:
am i off to the right start or what?
CODE:

using namespace std;
int main()
{
bool done;
int num1;
int num2;
int userChoice;
bool finished;
do
{
cout << "Enter <1> if you want to start over ";
cin >> userChoice;
if (userChoice == 1)
{
finished = true;
}
else
{
finished = false;
}
}
done = false;
cout << " Enter Orange county or Seminole county ";
while (done == false)
{
cin >> num1;
cin >> num2;

done = false;
cout << " Incorrect. Please try again. ";
}

}
while (finished == false); 
return 0;

Recommended Answers

All 3 Replies

First of all your code doesn't compile without errors. Fix the errors.

you need

#include <iostream>

at the top of your program

In the prompt for user starting over, your bool finished is assigned true if they want to continue. Although this works, you might consider renaming it to bool continue , just for clarity's sake.

Shouldn't you put the whole program in a while loop, with (finished == true) as the condition, then at the end of the loop prompt for bool finished ? Because the way you have it right now makes the prompt happen indefinately (in what appears to be an infinite loop), then you have a loop for the counties, without the prompt to continue.
Your do ends with the curly brace above done=false; , but the while that you want at the end is not at the end of do, but at the end of the program.

also, your prompt for the counties inputs the numbers, but then assumes that they entered something incorrectly, so it will never do anything but keep prompting for numbers saying you gave it something incorrect.

I hope this stimulates your figuring out process, because I don't want to tell you how to program, but I can give you a start in the right direction.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.