close
LV超3A名牌購物網

請參考我的做法


import java.util.*;


public class Y8893 {
 public static void main(String[] args) {
  Scanner scan = new Scanner(System.in);
  while (true) {
   System.out.print("Enter n ('0' for exit): ");
   int n = scan.nextInt();
   if (n == 1) func1(9);
   else if (n == 2) {
    System.out.print("Enter i: ");
    int i = scan.nextInt();
    func1(i);
   } else if (n == 0) {
    break;
   }
  }
 }
 
 public static void func1(int n) {
  for (int i = 1; i <= n; i++) {
   for (int j = 1; j <= n; j++) {
    if (i + j > (n+1)) break;
    System.out.print(i + "*" + j + "=" + (i*j) + "\t");
   }
   System.out.println();
  }
 }
}

LV超3A名牌購物網
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 方志遠 的頭像
    方志遠

    Lv,Gucci,Lv包包,Lv錢夾,Lv手錶,Lv目錄,Gucci公仔包,Lv購物包,Lv水桶包,Lv批發,愛美仕名牌購物

    方志遠 發表在 痞客邦 留言(0) 人氣()