標題:
陣列 (三) - 二維陣列
[打印本頁]
作者:
鄭繼威
時間:
2023-3-3 19:45
標題:
陣列 (三) - 二維陣列
一個 3x4 的二維陣列 可存放 12 筆資料
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]);
}
}
}
複製代碼
作者:
柏霖
時間:
2023-3-4 16:35
import java.io.Console;
public class test4 {
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]);
}
}
}
複製代碼
作者:
侯宣任
時間:
2023-3-4 16:40
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]);
}
}
}
複製代碼
作者:
郭閎宇
時間:
2023-3-4 16:43
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]);
}
}
}
複製代碼
作者:
錢冠叡
時間:
2023-3-4 16:45
public class Ch33
{
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]);
}
}
}
複製代碼
作者:
許浩浩
時間:
2023-3-4 16:47
import java.util.Scanner;
public class Ch01
{
public static void main(String args[])
{
int a[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0;i<=2;i++)
{
for(int j=0;j<=3;j++)
{
System.out.println("n["+i+"]["+j+"]="+a[i][j]);
}
}
}
}
複製代碼
作者:
侯宣仲
時間:
2023-3-4 16:49
public class Ch36
{
public static void main(String args[])
{
int n[][]={{5,7,8,258},{52,527,75,752},{52,25,15,275}};
for(int i=0; i<3; i++)
{
for(int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
鄭繼威
時間:
2023-3-4 16:56
6
作者:
石皓云
時間:
2023-3-4 17:13
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]);
}
}
}
複製代碼
作者:
張駿霖
時間:
2023-3-5 09:37
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]);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2