Draw a flowchart to read Price of an item . If price is less than 1000 then discount will be
5 % ,otherwise discount will be 10%. Calculate the discount and Net Amount of the item.
Answers
Answered by
1
Given : the price is less than 1000 then the discount will be 5 percent, otherwise discount will be 10 percent
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
Similar questions