4.下列程式碼試圖將陣列內數字進行由大到小排序,但其排序結果不完全正確,哪一行可能發生了錯誤呢?(A) for( int j = i ; j < 5 ; j++ ){(B) if(n[j+1] > n[j]){(C) n[j] = n[j+1];(D) n[j+1]=t;