本帖最後由 張健勳 於 2016-11-19 11:31 編輯
- package site.istak.org.tw;
-
- public class Main {
-
- public static void main(String[] args) {
-
- int [] [] num = new int [2][2];
-
- for( int i=0 ; i<num.length ; i++)
- {
- for(int j=0 ; j<num.length ; j++)
- {
- num [ i ][ j ] = j;
- }
- }
- for( int i=0 ; i<num.length ; i++)
- {
- for(int j=0 ; j<num.length ; j++)
- {
- System.out.println(num[i][j]);
- }
- }
- }
- }
複製代碼 |