Created
February 22, 2015 10:08
-
-
Save jiyeonseo/a9f7c03930b5ab824fb8 to your computer and use it in GitHub Desktop.
exercise 3.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hrs = raw_input("Enter Hours:") | |
h = float(hrs) | |
rate = raw_input("Enter Rate:") | |
r = float(rate) | |
if hrs > 40 : | |
pay = 40 * r + (h-40) * r * 1.5 | |
else : | |
pay = h * r | |
print pay |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment