Write a program that counts and prints out from 1 to 100 on the screen.
For each number that is a multiple of 3, print 'Fizz' instead of the number, for each number that is a multiple of 5, print 'Buzz' instead of the number, and for each number that is a multiple of both 3 and 5, print 'FizzBuzz' instead.
1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14, FizzBuzz, ...
The ATM we've built in lesson 3 is a bit of a problem: Each time you withdraw some money, a technician has to come round to restart it. It would be kinda good if it would at least run until your money is all withdrawn.
We've looked at while
loops. they should help you to solve this problem. Have a good think about what the exact condition is you want to test for, though. You may want to withdraw more money than is available and the ATM should not allow for that (We'll get into overdraft fees in another lesson), but maybe that's not directly a cause to shut down the ATM?
- You cannot withdraw negative numbers. That would be a deposit (See Stretch goal 2)
- Most ATMs in germany at least use 10 EUR bills as their smallest unit. Which means that the amount the user wants should fit that. How can you check if that's the case? (Hint: Remember the modulo operator?)
Some german ATMs also allow for deposits. Think about how you want to present this to the user. Do you want to ask them beforehand if they want to withdraw or deposit? Like this, maybe?
Do you want to withdraw (w) or deposit (d)? Enter letter w or d: w
How much do you want to withdraw? 100
Your balance is now 900 EUR. Please retrieve 100 EUR from the Slot below.
Alternatively, as a sort of ATM for business pros, you could allow the user to use negative numbers for withdrawal and positive numbers for deposits. But make sure you communicate this well:
Enter amount (negative for withdrawal, positive for deposit): -100
You've withdrawn 100 EUR, your balance is now 900 EUR.