Answer:
charge = 0
hours_worked = int(input("Enter the hours worked: "))
cost_of_parts = float(input("Enter the cost of parts: "))
if hours_worked == 0:
charge = 75
else:
charge = 120 + (75 * hours_worked) + cost_of_parts
print("The charge is $" + str(charge))
Explanation:
*The code is in Python.
Initialize the charge as 0
Ask the user to enter the hours_worked and cost_of_parts
Check the hours_worked. If it is 0, that means there is no inspecting. Set the charge to 75
Otherwise, (That means there is an inspecting) set the charge to 120, minimum charge, + (hours_worked * 75) + cost_of_parts
Print the charge