Computer Science, asked by rudra4692, 4 months ago

write a program that will accept the bill of a customer and add 5.5%​

Answers

Answered by sambhavgautam6
2

Bill=int(input("enter the bill::"))

Tax=5.5/100*Bill+Bill

print("Total Bill is::",Tax)

Attachments:
Answered by Anonymous
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