✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mis välja prinditakse?
public static void main(String[] args) {
int[] nums = new int[4];
for (int i = 0; i < nums.length; i++) {
if(nums[i] == 4) nums[i]++;
System.out.print(nums[i] + i);
}
}