Writing a while loop
In this exercise, let's write a while loop in three separate stages. In this situation, we want to purchase a certain amount of stock, defined by the variable stock_required. A second variable stock_owned tracks the amount of stock that we currently own.
Use a while loop to purchase the amount of stock required while also updating the currently owned stock.
Ця вправа є частиною курсу
Intermediate Julia
Інтерактивна практична вправа
Спробуйте виконати цю вправу, доповнивши цей зразок коду.
# Initialise stock_required and stock_owned
____ = 10
____ = 0