In this task, you are going to build a code to bake a cake to always be the right number of layers, size, and with the right number of candles.
- You will create a total of three functions for drawing a layered cake with candles.
- You will use a repeat() inside another repeat(), creating what's called a "nested loop".
- printCakeCandles(candles: Int)
- printCakeTop(candles: Int)
- printCakeBottom(candles: Int, layers: Int)
The way you will build up this code is how you can build up any program, starting with the big picture and adding detail. This is called "top-down development".
