✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int s=0;
int[] n = new int[] { -3, 2, 1, -4, 0 };
for ( int i=0; i < =4; i++)
{ if (n[i] > 0) s = s+n[i]; }
Чому дорівнює s по завершенні циклу?