Your score: 1800 pts
Check the following pseudo-code to work out the passcode needed to complete this level:
Check the following pseudo-code to work out the passcode needed to complete this level:
FUNCTION getNewPrice(price,discount) newPrice = price - discount RETURN newPrice END FUNCTION BEGIN myPrice = 1500 myDiscount = 100 passcode = getNewPrice(myPrice,myDiscount) OUTPUT passcode END