Skip to content

Instantly share code, notes, and snippets.

@MichelleDalalJian
Created October 7, 2017 12:39
Show Gist options
  • Save MichelleDalalJian/21afb2449213ba37e94b79a9960fcbc2 to your computer and use it in GitHub Desktop.
Save MichelleDalalJian/21afb2449213ba37e94b79a9960fcbc2 to your computer and use it in GitHub Desktop.
3.1 Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay the hourly rate for the hours up to 40 and 1.5 times the hourly rate for all hours worked above 40 hours. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use input to read a string and floa…
xh = input("Enter Hours:")
xr = input ("Enter Rate:")
fh = float (xh)
fr = float (xr)
if fh > 40:
reg = fh*fr
otp = (fh-40)*(fr*0.5)
xp = reg + otp
else:
xp = fh*fr
print ("Pay:",xp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment