✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде результатом виконання функції
int [] fun1 (int [] k)
{
int kol = k.Length;
int [] res = new int [kol];
for (int i = 0; i <k.Length; i + +)
res [kol] = k[i]/2;
return res;
}