2013年11月19日 星期二

[Java 教學範例拷貝]- 二維陣列物件 (完)

[Java 教學範例拷貝]- 二維陣列物件 (完)


剛才找資料時發現一個的Java 教學網站,趕快發揮(C/P)的長才將它備份來,有需要的同好,歡迎來(C/P)一下^^。


 


拷貝來源:
http://openhome.cc/Gossip/JavaGossip-V1/
http://openhome.cc/Gossip/JavaGossip-V1/TwoDimensionArray.htm


 









public class TwoDimArray { 
public static void main(String[] args) {
int arr[][];

arr = new int[2][];
arr[0] = new int[3];
arr[1] = new int[5];

for(int i = 0; i < arr.length; i++) {
for(int j = 0; j < arr[i].length; j++)
arr[i][j] = j + 1;
}

for(int i = 0; i < arr.length; i++) {
for(int j = 0; j < arr[i].length; j++)
System.out.print(arr[i][j] + " ");
System.out.println();
}
}
}


 


 


沒有留言:

張貼留言