标签: java arrays
我想根据给定的位置更改数组中的值:
int[] array = {2, 2, 2, 2, 2, 2}; int[] position = {5 , 2 , 3};
我要更改的位置= 5th,2nd,3rd
将值更改为3;
结果= 2、2、3、3、2、3
答案 0 :(得分:5)
for (int i : position){ array[i] = 3; }