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