Задача

6/10

Array element values

Задача

Determine what values ​​will be in the array after executing the code snippet below.
Source array. Numbering array elements - from 0 to 4
5 4 3 2 1
for i := 0 to n - 1 do
    a[i] := a[i] + i;

Specify in the response the values ​​of the array elements that will be in the array after the execution of this program fragment. Separate element values ​​with a single space.

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

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