write the psuedocode for a computer program that computes the sum of the numbers on the diagonal of a 10 x 10 integer array named numbers.
Here is what i got but i'm not sure:
int SIZE = 10;
int [ ] numbers = new int[SIZE] [SIZE];
for (int I = 0; I < numbers.length; I++)
numbers [ I ] = sum [I];
print sum;