標題:
printf() 輸出練習 (二)
[打印本頁]
作者:
tonyh
時間:
2020-2-5 14:00
標題:
printf() 輸出練習 (二)
本帖最後由 tonyh 於 2020-2-5 14:15 編輯
改寫
陣列 (四) - 三維陣列
中的程式碼,改成以 printf() 方法做輸出。
public class Ch40 {
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
盧弘毅
時間:
2020-2-5 14:19
import java.util.Scanner;
public class Ch99 {
public static void main(String[] args)
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0;i<2;i++)
for(int j=0;j<3;j++)
for(int k=0;k<4;k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
複製代碼
作者:
邱翊博
時間:
2020-2-5 14:20
package blueming;
public class blueming {
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
蔡承翰
時間:
2020-2-5 14:20
public class Ch01
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d\n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
張宸翔
時間:
2020-2-5 14:20
public class Ch01 {
public static void main(String[] args) {
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
for(int j=0; j<3; j++)
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
複製代碼
作者:
黃煜城
時間:
2020-2-5 14:20
public class Ch25
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
蘇行一
時間:
2020-2-5 14:21
public class Ch1
{
public static void main(String[] args)
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
楊秉樺
時間:
2020-2-5 14:22
public class Ch47
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]="+n[i][j][k]+"\n",i,j,k);
}
}
}
}
複製代碼
作者:
劉家銘
時間:
2020-2-5 14:22
public class Ch40 {
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
何蕙妘
時間:
2020-2-5 14:24
本帖最後由 何蕙妘 於 2020-2-5 14:25 編輯
public class Ch55 {
public static void main(String[] args)
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0;i<2;i++)
for(int k=0;k<3;k++)
for(int j=0;j<4;j++)
System.out.printf("n[%d][%d][%d]=%d\n",i,k,j,n[i][k][j]);
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-2-5 14:24
public class Ch01
{
public static void main(String[] args)
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%s%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-2-5 14:24
public class Ch47 {
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2