Format for date is: mm/dd/yy
mm means month
dd means day
and
yy means year.
Like: mm/dd/yy 12 / 15 / 2017
December 15, 2017.
Answer:
Answered below
Explanation:
// Python implementation
incrementAmount = 5
basePrice = 10
price = 0
arrivalHour = int(input("Enter arrival hour 0-12: ")
if arrivalHour < 0 or arrivalHour > 12:
print ("Invalid hour")
if arrivalHour == 0:
price = basePrice
else:
price = arrivalHour * incrementAmount
totalPrice = price + basePrice
if totalPrice > 53:
totalPrice = 53
print ("Your bill is $totalPrice")
Explanation:
HTML is used to create web pages, documents.
hope this helps u