Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

9th Edition

B01JXPZ7AK, 9780805360479

More Books

Students also viewed these Databases questions