Write a program that accepts an employee's ID, total worked hours of a month and the amount he received per hour. Print the employee's ID and salary of a particular month.
Test Data :
Input the Employees ID : 1001
Input the working (Hrs): 200
Salary (amount/Hr): 150
Expected Output:
Employees ID = 1001
Salary = Rs. 30000.00
Answers
Answered by
5
Answer:
employe_id=int(input("Input the Employees ID: "))
work_hour=int(input("Input the working (Hrs): "))
payment=int(input("Salary(amount/Hr): "))
total=float(work_hour*payment)
print("\nEmployee ID:",employe_id)
print("Salary:Rs.%0.2f "%total)
Explanation:
Answered by
0
Answer:
input the employees ID:1001
Similar questions