write a program to input salary of an employee and then determine her designation on some conditions. if the salary is less than all equal to RS.30000 , the designation is 'PROGRAMMER'.if the salary is between Rs.3000 and 5000/- ,the designation is 'manager' .if the sa is between Rs.5000 and Rs7000 ,the designation is 'managin director '.otherwise,designation is 'CEO'. in python.
Answers
Answered by
1
Here is your program....
s = int(input("Enter the salary"))
if (s<30000):
print ("Programmer")
elif (s>=30000 and s<50000):
print ("Manager")
elif (s>=50000 and s<70000):
print ("Managing Director")
else:
print ("CEO")
Similar questions
Science,
1 month ago
English,
1 month ago
Math,
1 month ago
English,
3 months ago
Social Sciences,
9 months ago