標題:
九九乘法表 (二)
[打印本頁]
作者:
周政輝
時間:
2018-8-11 14:59
標題:
九九乘法表 (二)
運用巢狀 while迴圈 , 寫一個排列整齊的九九乘法表如下圖所示.
提示: \t 代表鍵盤上的Tab鍵, 可用來對齊
作者:
王駿愷
時間:
2018-8-11 15:22
package ch01;
public class Main {
public static void main(String[] args)
{
// TODO 自動產生的方法 Stub
int i=1;
while (i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
}
}
}
複製代碼
作者:
黃安立
時間:
2018-8-11 15:25
package eric;
public class Main {
public static void main(String[] args)
{
int i=1;
while (i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
}
}
}
複製代碼
作者:
顏詢
時間:
2018-8-11 15:29
package bbs.istak;
public class crb {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1;
while(i<=9){
int j=1;
while(j<=9){
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
}
}
}
複製代碼
作者:
湯東緯
時間:
2018-8-20 20:21
public class CH01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1;
while (i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
}
}
}
複製代碼
作者:
高允懋
時間:
2018-8-23 17:23
public class Hello
{
public static void main(String[] args)
{
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
System.out.println();
i++;
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2