Board logo

標題: 九九乘法表 (一) [打印本頁]

作者: tonyh    時間: 2019-8-5 11:10     標題: 九九乘法表 (一)

利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\t 代表鍵盤上的Tab鍵,可用來對齊。

  1. public class Ch14 {

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

作者: 黃永恩    時間: 2019-8-5 11:38

  1. import java.util.Scanner;

  2. public class Ch01 {

  3.         public static void main(String[] args) {
  4.                 for(int i=1;i<=9;i++){
  5.                         for(int j=1;j<=9;j++){
  6.                                 System.out.print(i+"x"+j+"="+i*j+"\t");
  7.                         }
  8.                         System.out.println();
  9.                 }
  10.         }
  11. }
複製代碼

作者: 余奕廷    時間: 2019-8-5 11:39

  1. public class Ch02 {

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

作者: 張嘉栩    時間: 2019-8-5 11:39

  1. public class Ch10 {

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

作者: 張書涵    時間: 2019-8-5 11:39

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=9;i++)
  4.                 {       
  5.                         for(int j=1;j<=9;j++)
  6.                                 System.out.print(i+"x"+j+"="+(i*j)+"\t");
  7.                     System.out.print("\n");
  8.                 }
  9.         }
  10. }
複製代碼

作者: 莊鈞程    時間: 2019-8-5 11:39

  1. public class Ch10 {
  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=9;i++){
  4.                     for(int j=1;j<=9;j++)
  5.                             System.out.print(i+"x"+j+"="+(i*j)+"\t");
  6.                     System.out.println();
  7.                 }
  8.         }
  9. }
複製代碼

作者: 張郁庭    時間: 2019-8-5 11:39

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.             for(int i=1; i<=9; i++)
  4.             {
  5.                     for(int j=1; j<=9; j++)
  6.                         System.out.print(i+"X"+j+"="+(i*j)+"\t");
  7.                     System.out.println();
  8.             }
  9.                    
  10.         }
  11. }
複製代碼

作者: 許育禎    時間: 2019-8-5 11:40

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

作者: 葉俠愷    時間: 2019-8-5 11:40

  1. public class Ch11 {

  2.         public static void main(String[] args) {

  3. for(int i=1;i<=9 ;i++)
  4.        {for(int j=1;j<=9;j++)
  5.           {
  6.                System.out.print(i+"x"+j+"="+(i*j)+"\t");
  7.           }
  8.         System.out.println();
  9.        }
  10.         }

  11. }
複製代碼

作者: 鄭宇崴    時間: 2019-8-5 11:41

本帖最後由 鄭宇崴 於 2019-8-5 11:56 編輯
  1. public class Ch14
  2. {
  3.     public static void main(String[] args)
  4. {
  5.            for(int i=1;i<=9;i++)
  6. {
  7.            for(int j=1;j<=9;j++)
  8. {
  9.            System.out.print(i+"x"+j+"="+(i*j)+"\t");
  10. }
  11.            System.out.println();
  12. }
  13. }
  14. }
複製代碼

作者: 許育慈    時間: 2019-8-5 11:41

  1. public class Ch11 {
  2.         public static void main(String[] args) {
  3.                 int sum=1;
  4.                        for(int i=1;i<=9;i++){
  5.                         for(int j=1;j<=9;j++){
  6.                                 System.out.print(i+"x"+j+"="+i*j+"\t");       
  7.                             }  
  8.                         System.out.println();
  9.                 }      
  10.         }
  11. }
複製代碼

作者: 黃芊嬡    時間: 2019-8-5 11:41

  1. public class Ch10
  2. {

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

作者: 曾暘竣    時間: 2019-8-5 11:41

  1. public class Ch10 {

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

作者: 潘憶承    時間: 2019-8-5 11:42

  1. import java.util.Scanner;

  2. public class Ch02 {

  3.         public static void main(String[] args) {
  4.                 for(int i=1;i<=9;i++){
  5.                         for(int j=1;j<=9;j++){
  6.                                 System.out.print(i+"x"+j+"="+i*j+"\t");
  7.                         }
  8.                         System.out.println();
  9.                 }
  10.         }
  11. }
複製代碼

作者: 余映均    時間: 2019-8-5 11:43

  1. public class Ch12 {

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

作者: 蔡明蓉    時間: 2019-8-5 11:44

  1. public class Ch015
  2. {
  3.         public static void main(String[] args)
  4.         {               
  5.                 for(int i=1;i<=9;i++)
  6.                 {
  7.                         for(int j=1;j<=9;j++)
  8.                                 System.out.print(i+"X"+j+"="+(i*j)+"\t");
  9.                 System.out.println();
  10.                 }
  11.         }
  12. }
複製代碼

作者: 何育翔    時間: 2019-8-5 11:57

  1. public class Ch10 {

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

  10.                 }

  11.         }

  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2