返回列表 發帖
  1. public class ch16
  2. {
  3.    public static void main (String showdemo[])
  4.    {
  5.       
  6.      for(int i=1;i<=9;i++)
  7.      {     
  8.         for(int y=1;y<=9;y++)
  9.         {
  10.            System.out.print(i+"x"+y+"="+(i*y)+"\t");

  11.         }
  12.          System.out.println();
  13.      }
  14.    }
  15. }
複製代碼

TOP

返回列表