public void DivArray(int[] pArray,int size){ for (int i = size-1; i >=0 ; i--) { pArray[i]/=pArray[0]; } }