What is the output of the following code?
int[] values = new int[5];
for (int count = 0; count < 5; count++)
values[count] = count + 1;
for (int count = 0; count < 5; count++)
System.out.println(values[count]);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.