標題:
陣列 (三) - 二維陣列
[打印本頁]
作者:
陳品肇
時間:
2019-7-4 13:01
標題:
陣列 (三) - 二維陣列
一個 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]);
}
}
}
複製代碼
作者:
張閎鈞
時間:
2019-7-4 13:22
package text369;
public class text123 {
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]);
}
}
}
複製代碼
作者:
林侑成
時間:
2019-7-4 13:23
public class AAA
{
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<3;i++)
{
for(int j=0;j<4;j++)
{
System.out.println("a["+i+"]["+j+"]="+a[i][j]);
}
}
}
複製代碼
作者:
湯東緯
時間:
2019-7-4 13:25
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<3;i++){
for(int j=0;j<4;j++){
System.out.println("n["+i+"]["+j+"]="+a[i][j]);
}
}
}
}
複製代碼
作者:
黃安立
時間:
2019-7-4 13:25
public class Ch30
{
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-4 13:26
public class Ch09 {
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-4 13:27
public class Ch06 {
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 <= 2; i += 1) {
for (int j = 0; j <= 3; j += 1) {
System.out.print("n[" + i + "][" + j + "]=" + n[i][j] + "\n");
}
}
}
}
複製代碼
作者:
呂昀宸
時間:
2019-7-4 13:28
public class nsezz {
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 < 3; i++) {
for (int k = 0; k < 4; k++)
System.out.print("a"+"["+i+"]"+"["+k+"]=: "+a[i][k]+" \n");
}
}
}
複製代碼
作者:
蔣宗儒
時間:
2019-7-4 13:48
public class junior01 {
public static void main(String args[]){
int a[][]=new int[][]{{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for (int i = 0; i<=2 ; i+=1)
for (int m =0 ; m<=3 ; m+=1)
System.out.println("n["+i+"]["+m+"]="+a[i][m]);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2