Board logo

標題: 巢狀迴圈 [打印本頁]

作者: tonyh    時間: 2013-5-27 20:01     標題: 巢狀迴圈

  1. public class ch11    //類別
  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+"*"+j+"="+(i*j)+"\t");  //\t代表鍵盤上的Tab鍵
  10.              }
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼





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