標題:
九九乘法表 (一)
[打印本頁]
作者:
tonyh
時間:
2019-1-23 11:23
標題:
九九乘法表 (一)
本帖最後由 tonyh 於 2019-1-23 11:36 編輯
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\t 代表鍵盤上的Tab鍵,可用來對齊。
public class Ch14 {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
趙一鳴
時間:
2019-1-23 11:36
public class Ch07
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"*"+j+"="+(i*j)+"\t");
}
System.out.print("\n");
}
}
}
複製代碼
作者:
林育鋐
時間:
2019-1-23 11:39
public class Ch08 {
public static void main(String[] args) {
int i,j;
for(i=1;i<10;i++){
for(j=1;j<10;j++){
System.out.print(i+"x"+j+"="+i*j+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
孫焌仁
時間:
2019-1-23 11:41
public class Ch10
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int c=1;c<=9;c++)
{
System.out.print(i+"x"+c+"="+(i*c)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
楊于暄
時間:
2019-1-23 11:43
public class Ch12 {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print( i+"x"+j+"="+(i*j)+"\t" );
}
System.out.println();
}
}
}
複製代碼
作者:
楊貳鈞
時間:
2019-1-23 11:48
public class Ch11
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
may
時間:
2019-1-23 11:53
public class Ch14 {
public static void main(String[] args) {
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"*"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
王騰立
時間:
2019-1-23 11:57
import java.util.Scanner;
public class Ch12
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2