返回列表 發帖
  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

返回列表