See Comment for complete question
Answer:
Input Bags
Discount = 0%
If Bags >= 100 Then
Discount = 15%
End If
Print Discount
Stop
Step-by-step explanation:
This gets the number of bags bought
Input Bags
This initializes the discount to 0%
Discount = 0%
If the bags of cement bought is 100 or above
If Bags >= 100 Then
This discount becomes 15%
Discount = 15%
This ends the if statment
End If
This prints the discount percentage
Print Discount
This ends the pseudocode
Stop