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
for (i=0; i<5; i++)
{
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.
Выберите правильный ответ, либо введите его в поле ввода
Комментарий учителя