返回列表 發帖

函式的建立與執行 (三)

  1. public class ch28    //類別
  2. {
  3.     public static void main(String args[])   //主方法
  4.     {
  5.          print99();
  6.     }

  7.     public static void print99()
  8.     {
  9.          for(int i=1; i<=9; i++)
  10.          {
  11.              for(int j=1; j<=9; j++)
  12.              {
  13.                   System.out.print(i+"*"+j+"="+(i*j)+"\t");  //\t代表鍵盤上的Tab鍵
  14.              }
  15.              System.out.println();
  16.          }
  17.     }
  18. }
複製代碼

返回列表