標題:
陣列 (三) - 二維陣列
[打印本頁]
作者:
tonyh
時間:
2020-2-4 11:50
標題:
陣列 (三) - 二維陣列
一個 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]);
}
}
}
複製代碼
作者:
張宸翔
時間:
2020-2-4 12:01
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<3; i++)
for(int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
複製代碼
作者:
盧弘毅
時間:
2020-2-4 12:01
public class Ch50
{
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]);
}
}
複製代碼
作者:
蔡承翰
時間:
2020-2-4 12:01
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<3;i++){
for(int j=0;j<4;j++){
System.out.println("n["+i+"]["+j+"]="+(n[i][j]));
}
}
}
}
複製代碼
作者:
楊秉樺
時間:
2020-2-4 12:02
public class Ch34
{
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]);
}
}
複製代碼
作者:
邱翊博
時間:
2020-2-4 12:02
package abc;
public class abc {
public static void main(String[] args) {
int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0; 1<3; i++)
{
for(int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
蘇行一
時間:
2020-2-4 12:02
import java.util.Scanner;
public class Ch1 {
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]);
}
}
}
複製代碼
作者:
黃煜城
時間:
2020-2-4 12:03
public class Ch20 //112~118
{
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]);
}
}
}
複製代碼
作者:
沙芃妘
時間:
2020-2-4 12:03
package hello;
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]);
}
}
複製代碼
作者:
劉家銘
時間:
2020-2-4 12:04
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<3;j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-2-4 12:04
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<3; i++)
{
for(int j=0; j<4; j++)
System.out.println("n["+i+"]["+j+"]="+n[i][j]);
}
}
}
複製代碼
作者:
何蕙妘
時間:
2020-2-4 12:04
import java.util.Scanner;
public class Ch54 {
public static void main(String[] args) {
int c[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0;i<3;i++)
{
for(int n=0;n<4;n++)
System.out.println("c["+i+"]["+n+"]="+c[i][n]);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2