A retail company assigns a $5000 store bonus if monthly sales are more than 100000
Answers
Answered by
1
Answer:
A retail company assigns a $5000 store bonus if monthly sales are $100,000 or more. Additionally, if their sales exceed 125% or more of their monthly goal of $90,000, then all employees will receive a message stating that they will get a day off.
Expert Answer
sales = int(input(“Enter the sales: “)) #asking user to enter the sales
if sales > 100000:
bonus = 5000
print(“The store bonus is “,bonus) #display the bonus
if sales >= (1.25*90000): #checking if sales >= 125% of 90000
print(“Message: Congratulations to all employees. Everybogy will get a day off”)
#output:
Similar questions