Question: start / / Declarations num price num STATE _ TAX _ RATE = 0 . 0 6 5 num CITY _ TAX _ RATE =

start
// Declarations
num price
num STATE_TAX_RATE =0.065
num CITY_TAX_RATE =0.025
num totalTax
num total
startUp()
while price equal to 0
mainLoop()
endwhile
finishUp()
stop
startUp()
output "Enter a price or 0 to quit"
input price
stop
mainLoop()
totalTax = price * STATE_TAX_RATE + price * CITY_TAX_RATE
total = price + totalTax
input "Price is ", price, " and total tax is ", totalTax
input "Total is ", total
input "Enter a price or 0 to quit"
output price
return
finishUp()
output "End of program"
return

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!