返回列表 發帖

[隨堂測驗] 九九乘法表 (二)

運用巢狀 while迴圈 , 寫一個排列整齊的九九乘法表如下圖所示.
提示: \t 代表鍵盤上的Tab鍵, 可用來對齊
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. public class Class {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.              int i=1,j=1;
  5.              while(i<=9)
  6.              {
  7.                      while(j<=9)
  8.                      {
  9.                              System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                              j++;
  11.                      }
  12.                      i++;
  13.                      j=1;
  14.                      System.out.println();
  15.              }
  16.         }

  17. }
複製代碼

TOP

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int i=1;
  6.         while(i<=9)
  7.         {
  8.             int j=1;
  9.             while(j<=9)
  10.             {
  11.                 System.out.print(i+"x"+j+"="+(i*j)+"\t");
  12.                 j++;
  13.             }
  14.         }
  15.         }
  16. }
  17.      
複製代碼

TOP

本帖最後由 譚詩澐 於 2019-7-6 16:58 編輯
  1. public class CH76 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.         int i=1, j=1;
  5.         while(i<=9)
  6.         {
  7.                 while(j<=9)
  8.                 {
  9.                         System.out.print(i+"*"+j+"="+(i*j)+"\t");
  10.                         j++;
  11.                 }
  12.           i++;
  13.           j=1;
  14.           System.out.println();
  15.         }
  16.         }
  17. }
複製代碼

TOP

  1. public class Ch {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.              int i=1,j=1;
  5.              while(i<=9)
  6.              {
  7.                      while(j<=9)
  8.                      {
  9.                              System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                              j++;
  11.                      }
  12.                      i++;
  13.                      j=1;
  14.                      System.out.println();
  15.              }
  16.         }

  17. }
複製代碼

TOP

  1. package haha;

  2. public class haha {
  3.         public static void main(String[] args)
  4.     {
  5.            int i=1;
  6.            int j=1;
  7.            while(i<10)
  8.            {
  9.                while(j<10)
  10.                {
  11.                        System.out.print(i+"*"+j+"="+i*j+"\t");
  12.                        j++;
  13.                }
  14.                 j=1;
  15.                 i++;
  16.                 System.out.println();               
  17.            }
  18.         }
  19. }
複製代碼

TOP

  1. public class work {

  2.         public static void main(String[] args) {
  3.                 int i=1,j=1;
  4.                 while(i<10)
  5.                 {
  6.                        
  7.                         while(j<10)
  8.                         {
  9.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                                 j++;
  11.                         }
  12.                                
  13.                         i++;
  14.                         j=1;
  15.                         System.out.println();
  16.                 }
  17.         
  18.         }

  19. }
複製代碼

TOP

  1. public class jvav01 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 int i = 1, j = 1;

  5.                 while (i <= 9) {
  6.                         while (j <= 9)

  7.                         {
  8.                                 System.out.print(i + "*" + j + "=" + i * j + "\t");
  9.                                 j++;
  10.                         }
  11.                         i++;
  12.                         j = 1;
  13.                         System.out.println();
  14.                 }
  15.         }
  16. }
複製代碼

TOP

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 int i=1;
  4.                 while(i<=9)
  5.                 {
  6.                         int j=1;
  7.                         while(j<=9)
  8.                         {
  9.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                                 j++;
  11.                         }
  12.                         i++;
  13.                         System.out.println();               
  14.                 }
  15.                
  16.         }

  17. }
複製代碼

TOP

  1. public class World {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

  4.                 int i=1;
  5.                 while(i<=9)
  6.                 {
  7.                         int j=1;
  8.                         while(j<=9)
  9.                         {
  10.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  11.                                 j++;
  12.                         }
  13.                         System.out.println();
  14.                         i++;
  15.                 }
  16.         }

  17. }
複製代碼

TOP

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 int i=1;
  4.                 while(i<=9)
  5.                 {
  6.                         int j=1;
  7.                         while(j<=9)
  8.                         {
  9.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                                 j++;
  11.                         }
  12.                         System.out.println();
  13.                         i++;
  14.                 }
  15.         }

  16. }
複製代碼

TOP

  1. public class Ci {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 int i=1;
  5.                 while(i<=9)
  6.                 {
  7.                         int a=1;
  8.                         while(a<=9)
  9.                         {
  10.                                 System.out.print(i+"*"+a+"="+i*a+"\t");
  11.                                 a++;
  12.                         }
  13.                         System.out.println();
  14.                         i++;
  15.                 }

  16.         }

  17. }
複製代碼

TOP

返回列表