返回列表 發帖

九九乘法表 (二)

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

  1. package ch01;

  2. public class Main {

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

TOP

  1. package eric;

  2. public class Main {
  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+"*"+j+"="+i*j+"\t");
  12.          j++;
  13.          }
  14.         i++;
  15.               }
  16.         }
  17.    }
複製代碼

TOP

  1. package bbs.istak;

  2. public class crb {

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

TOP

  1. public class CH01 {

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

  16.    
  17.         }

  18. }
複製代碼

TOP

  1. public class Hello
  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+"*"+j+"="+i*j+"\t");
  12.                                 j++;
  13.                         }
  14.                         System.out.println();
  15.                         i++;
  16.                 }
  17.         }
  18. }
複製代碼

TOP

返回列表