Array element values
Задача
Determine what values will be in the array after executing the code snippet below.
Source array:
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.
Выберите правильный ответ, либо введите его в поле ввода
Комментарий учителя