Create a Visual Basic Program to calculate the net salary by adding bonus with 12 %.
Answers
Answered by
0
Answer:
x= int( input ("enter your salary"))
a= x+ (12*x//100)
print(a)
Similar questions