Answer:
The pseudocode is as follows:
Input Qty
Discount = 0%
If Qty>= 100:
Discount = 15%
Print Discount
Step-by-step explanation:
This gets the quantity of bags
Input Qty
This initializes the discount percentage to 0%
Discount = 0%
This checks if the quantity is greater than or equal to 100.
If Qty>= 100:
If true, the discount percentage is set to 15%
Discount = 15%
This prints the calculated discount percentage
Print Discount
See attachment for flowchart