A shop will give discount of 10% if the cost of purchased quantity is more than 1000.
Ask user for quantity
Suppose, one unit will cost 100.
Judge and print total cost for user
Pls do
it's flowgorithm question do with a picture also
Answers
Answered by
15
Answer:
In Python:
Quantity= input("Enter Quantity")
Total_Cost= 100×Quantity
if (Total_Cost > 1000):
Total_cost= 0.9×Total_cost
print(Total_cost)
Similar questions