返回列表 發帖

[隨堂測驗] 九九乘法表

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

  1. package ch01;

  2. public class Main {

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

  15. }
複製代碼

TOP

  1. package eric;

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

TOP

本帖最後由 顏詢 於 2018-8-11 15:03 編輯
  1. package bbs.istak;

  2. public class crb {

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

TOP

  1. public class CH01 {

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

  13. }
複製代碼

TOP

本帖最後由 tonyh 於 2018-8-23 17:08 編輯
  1. public class Hello
  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+"*"+j+"="+(i*j)+"\t");
  9.                         System.out.println();
  10.                 }
  11.         }
  12. }
複製代碼

TOP

返回列表