Write a program that will accept the bill of a customer and add 5percent service tax to it
Answers
Answered by
0
Answer:
it is a python program...plz specify d language next time
Explanation:
simple program:
a=float(input('total:'))
print('payable amount:',a+a*0.05)
function based:
def tax(a):
a+=a*0.05
return(a)
a=float(input('total:'))
print(tax(a))
Similar questions