Задача

6/11

Array element values

Задача

Determine what values ​​will be in the array after executing the code snippet below.
Source array:
5 4 3 2 1
Numbering of array elements - from 0 to 4.
  for i in range(5): A[i] = A[i] + i In your answer, indicate what the values ​​of the array elements will become after the execution of this program fragment. Separate element values ​​with a single space.

Выберите правильный ответ, либо введите его в поле ввода

Комментарий учителя