Computer Science A - 10/5/99 Show a code fragment that will show the following: Numbers: [0] [1] [2] [0]|_9_|_9_|_7_| [1]|_6_|_5_|_4_| [2]|_3_|_2_|_1_| apmatrix Numbers(3, 3); int row, col, value = 10; for(row = 0; row < Numbers.numrows(); row++) for(col = 0; col < Numbers.numcols(); col++) { value--; Numbers[row][col] = value; }