Save the change
Log in om je oplossingen te testen.
# Save the change program
# -------------------------
# Subprograms
# -------------------------
def nearest_pound(amount):
return int(amount) + 1
def save_the_change(amount):
if int(amount) != amount:
savings = nearest_pound(amount) - amount
else:
savings = 1
return savings
# -------------------------
# Main program
# -------------------------
purchase_price = float(input("Enter the purchase price: £"))
debit = nearest_pound(purchase_price)
savings = save_the_change(purchase_price)
print("Debit - £{0:.2f}".format(debit))
print("Credit to savings - £{0:.2f}".format(savings))
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.
Python sandbox
In dit venster kan je Python-code uitvoeren zonder iets te moeten installeren. De code die je hier schrijft wordt niet automatisch ingediend in Dodona.