標題:
陣列 (三) - 二維陣列
[打印本頁]
作者:
陳品肇
時間:
2019-7-20 15:14
標題:
陣列 (三) - 二維陣列
一個 3x4 的二維陣列 可存放 12 筆資料
[attach]6853[/attach]
public class Ch36
{
public static void main(String args[])
{
int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0; i<3; i++)
{
for(int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
蔡依宸
時間:
2019-7-20 16:26
public class Class666 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int n[][]=new int[][]{{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0;i<n.length;i++)
{
for(int j=0;j<n[i].length;j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-20 16:26
public class Ch01
{
public static void main(String args[])
{
int n[][]={{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int i=0;i<n.length;i++)
{
for(int j=0;j<4;j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
戴偉宸
時間:
2019-7-20 16:28
public class work {
public static void main(String[] args) {
int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0; i<3; i++)
{
for(int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
戴唯陞
時間:
2019-7-20 16:31
public class haahhhahhhah {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int n[][] = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } };
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 4; j++)
System.out.println("n[" + i + "][" + j + "]=" + n[i][j]);
}
}
}
複製代碼
作者:
蔡季庭
時間:
2019-7-20 16:31
public class De {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int n[][]=new int[][]{{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int i=0; i<n.length; i++)
{
for(int j=0; j<n[i].length; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
陳柏霖
時間:
2019-7-20 16:32
public class Hello {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int x[][]={{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int i=0; i<x.length; i++)
{
for(int j=0; j<x[i].length; j++)
System.out.println("x["+i+"]["+j+"]="+x[i][j]);
}
}
}
複製代碼
作者:
戴安利
時間:
2019-7-20 16:49
package haha;
public class haha
{
public static void main(String[] args)
{
int n[][] ={{1,2,3,4},{5,6,7,8,},{9,10,11,12}};
for (int i=0; i<3; i++)
{
for (int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
黃安立
時間:
2019-7-20 17:25
public class CH01 {
public static void main(String[] args) {
int n[][]=new int[][]{{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int i=0; i<n.length; i++)
{
for(int j=0; j<n[i].length; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
章幼莛
時間:
2019-7-27 14:48
public class Ch27 {
public static void main(String[] args)
{
int n[][]={{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int i=0;i<3;i++)
{
for(int j=0;j<4;j++)
{
System.out.println("n["+i+"]"+"["+j+"]="+n[i][j]);
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2