ПочатиПочніть безкоштовно

Printing

When working with scripts, print statements can help you see the output of your code. You can use one or more print statements in the same script, and everything inside the statements will be printed to the console.

You are working on the same script from the previous exercise to track your weekly working hours. Now you want to add printing to see the output of your total hours worked this month.

Ця вправа є частиною курсу

Introduction to Julia

Переглянути курс

Інструкції до вправи

  • Print the number of weeks worked this month, which is 4.
  • Print the sum of hours worked each week, which is 39 + 37.5 + 40 + 42.

Інтерактивна практична вправа

Спробуйте виконати цю вправу, доповнивши цей зразок коду.

# Hours worked this week

# Print the number of weeks worked
____

# Print the sum of the hours worked each week
____
Редагувати та запускати код