Skip to content

Instantly share code, notes, and snippets.

@Mohamed2del
Created June 9, 2018 15:06
Show Gist options
  • Save Mohamed2del/e1019a8dfd5dfa90288e88e0ba723284 to your computer and use it in GitHub Desktop.
Save Mohamed2del/e1019a8dfd5dfa90288e88e0ba723284 to your computer and use it in GitHub Desktop.
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 float()…
hrs = input("Enter Hours:")
h = float(hrs)
xx = input("Enter the Rate:")
x = float(xx)
if h <= 40:
print( h * x)
elif h > 40:
print(40* x + (h-40)*1.5*x)
@RowanNassar
Copy link

mine was
hrs = input("Enter Hours:")
hrs =float(hrs)
rate= input("Enter rate:")
rate=float(rate)
if hrs<= 40 :
pay = float(hrs)* float(rate)
print("pay= ", pay)
elif hrs>40:
pay = 40*rate + (hrs-40)1.5rate
print("pay= ", pay)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment