Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PROGRAMMING IN C++ thank you Progressive Tax calculator A country has a progressive lax. Depending on the income, the people have to pay more or
PROGRAMMING IN C++
Progressive Tax calculator A country has a progressive lax. Depending on the income, the people have to pay more or less taxes. Their first $5.000 are tax free For everything over $5,000 up to $10,000 they have to pay 10% For everything over $10.000 up to $20,000 they have ta pay 15% For everything over $20,000 up to $30,000 they have to pay 20% For everything over $30,000 they have to pay 30% As you can probably guess, your job is to write a tax calculation program that will calculate they amount of taxes for a given income. Read the requirements carefully! It's easy to skim them and get the requirements wrong Tax for $7500 is $250, not $750; tax for $15000 is $1250. If your program doesn't give those values, then reread the assignment and think. And ask a friend in the class, or the TA or one of the tutors. if you're having trouble. Part 5a Do not start programming yet! Sit down and think first. Determine the data (variables and constants) you need, what you need to get from the user, and the steps needed to solve the problem. Write the pseudo-code for the program on the computer (you can create a. txt file in VS). Work out the answer for several values, so you have some numbers to test your code with. Then trace through your algorithm by hand, and make sure that it produces the same Do not start programming yet!. Sit down and think first. Determine the data (variables and constants) you need, what you need to get from the user, and the steps needed to solve the problem. Write the pseudo-code for the program on the computer (you can create a txt file in VS). Work out the answer for several values, so you have some numbers to test your code with. Then trace through your algorithm by hand, and make sure that it produces the same answers. The pseudocode you write will make good comments to document your code Part 5 b Once you have the pseudo-code, you may work on the actual program Additional requirements: - Name your program tax_burden.epp - Please include your name, course and a brief description in the header comments. - Please indent your program properly. - Since you are outputting a monetary value, please format the result properly ( 2 digits after the decimal point) thank you
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started