write a program that will accept the bill of a customer and add 5.5%
Answers
Answered by
2
Bill=int(input("enter the bill::"))
Tax=5.5/100*Bill+Bill
print("Total Bill is::",Tax)
Attachments:
Answered by
1
Answer:
Bill=int(input("enter the bill::"))
Tax=5.5/100*Bill+Bill
print("Total Bill is::",Tax)Bill=int(input("enter the bill::"))
Tax=5.5/100*Bill+Bill
print("Total Bill is::",Tax)
Similar questions