出九九乘法表。
public class Example16 {
public static void main(String[] args) {
table(9);
}
public static void table(int n) {
for (int i = 1; i for (int j = 1; j System.out.print(j + "*" + i + "=" + j * i+ "t");
}
System.out.println();
}
}
}
以上がJava の古典的なプログラミングの質問 - 99 の九九の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。