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