Question
write pseudocode to calculate the total amount customer has to pay when purchasing items from a store. The calculation includes 6% tax. Find total amount customer has to pay based on 3 item code,price and quatity
Answers
total=0
for i=1..3
read code, price, quantity
total += price * quantity * 1.06
next i
for i=1..3
read code, price, quantity
total += price * quantity * 1.06
next i
Write a algorithm to calculate a deduction of 5 percent salary, with the remaining 95 percent
Related Questions
A customer in a store is purchasing five items. Design a program in python that asks for the price o...
Using pseudocode or a flowchart write a program that does the following:
Allow the end user to en...
Write a solution in a pseudocode to calculate the discount amount and total fees. This should inclu...
The following list shows the items and prices for a restaurant order. Calculate the total amount if...