Computer Science, asked by saiarthi06, 1 day ago

write a program to accept the salary of an employe and display the incremant salary after an increment of 8% to his existing salary

Answers

Answered by samarthkrv
1

Answer:

orig = float(input("Enter original salary:"))

x = float((8/100)*orig)

incremented = orig + x

print("original salary:",orig)

print("salary after 8% increment:",incremented)

Explanation:

Similar questions