I have a two dimension integer array:
int number[][] = {{1,2,3},{4,5,6},{7,8,9}};
Now, I want to print out in this format:
1 2 3
8 9 4
7 6 5
Has anyone got any idea on how to do it?
Chinese Java Faq Forum
int number[][] = {{1,2,3},{4,5,6},{7,8,9}};
Now, I want to print out in this format:
1 2 3
8 9 4
7 6 5
Has anyone got any idea on how to do it?
Chinese Java Faq Forum