draw a flow chart to read price of an item, if the price is less than 1000 then the discount will be 5 percent, otherwise discount will be 10 percent. calculate the discount and net amount of the item
Answers
Given : the price is less than 1000 then the discount will be 5 percent, otherwise discount will be 10 percen
To Find : calculate the discount and net amount of the item
Solution:
START
INPUT - ENTER PRICE = P
DECISION BOX price P < 1000
YES - Processing Box Discount D = (5P/100)
- Processing Box Net Amount A = P - D
No - Processing Box Discount D = (10P/100)
- Processing Box Net Amount A = P - D
OUTPUT - Discount D and Net Amount A
END
Learn More:
The following flowchart is designed to advise a person on what will ...
https://brainly.in/question/26116644
Draw a flow chart and write an algorithm for a program that adds all ...
https://brainly.in/question/12819501
Explanation:
Aa shopkeeper offers 20%discount on tintan watches on the marked price above rs.2000.draw a flowchart to calculate the amount to be paid if you purchase a titan watch.