Question: Which operator must be placed in the underlined part for the result of the following code to be [2, 2, 0, 9, 3]? int[] A
Which operator must be placed in the underlined part for the result of the following code to be [2, 2, 0, 9, 3]?
int[] A = {2, 1, 1, 9, 3}; for (int i=0; i for (int j=0; j if ( A[i] ____ A[j] ) { A[i] += 1; A[j] -= 1; } } } System.out.println(Arrays.toString(A)); // [2, 2, 0, 9, 3] should be the output.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
