標題:
九九乘法表 (一)
[打印本頁]
作者:
tonyh
時間:
2021-1-25 11:14
標題:
九九乘法表 (一)
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\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();
}
}
}
複製代碼
作者:
楊澤全
時間:
2021-1-25 11:23
public class Ch02
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int k=1;k<=9;k++)
{
System.out.print(i+"*"+k+"="+(i*k)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
劉凱閔
時間:
2021-1-25 11:23
public class Ch08 {
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();
}
}
}
複製代碼
作者:
王睿宇
時間:
2021-1-25 11:24
public class A01 {
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();
}
}
}
複製代碼
作者:
王博裕
時間:
2021-1-25 11:25
public class Ch06 {
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();
}
}
}
複製代碼
作者:
卓炘暘
時間:
2021-1-25 11:25
import java.util.Scanner;
public class Ch01
{
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();
}
}
}
複製代碼
作者:
吳聲寬
時間:
2021-1-25 11:25
public class Ch10
{
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();
}
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-25 11:27
public class Ch06
{
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("");
}
}
}
複製代碼
作者:
楊小萱
時間:
2021-1-25 11:29
public class Ch05
{
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();
}
}
}
複製代碼
作者:
紀承典
時間:
2021-1-25 11:31
public class Ch01
{
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();
}
}
}
複製代碼
作者:
藍健洲
時間:
2021-1-25 11:31
public class Ch10 {
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();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2