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

Assigning variables

Assigning variables means you can write more complex code. Using variables also makes the code you write more interpretable since you are labeling the pieces of information rather than having them as raw pieces of data.

You are writing a script to calculate your average running pace from your last two runs. You want to assign your run times and distances to variables so you can process them later.

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

Introduction to Julia

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

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

  • Assign the value 4500 to the variable monday_distance.
  • Assign the value 28.9 to the variable monday_time.
  • Assign the value 6000 to the variable wednesday_distance.
  • Assign the value 37.1 to the variable wednesday_time.

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

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

# Create variable monday_distance
monday_distance = ____

# Create variable monday_time
____ = 28.9

# Create variable wednesday_distance
____ = ____

# Create variable wednesday_time
____
Редагувати та запускати код