Java经典编程题–九九乘法表

输出九九乘法表。

public class Example16 { public static void main(String[] args) { table(9); } public static void table(int n) { for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { System.out.print(j + "*" + i + "=" + j * i+"\t"); } System.out.println(); } }}

以上就是Java经典编程题–九九乘法表的详细内容,更多请关注其它相关文章!

人生的小河,总要流过森林,荒漠,

Java经典编程题–九九乘法表

相关文章:

你感兴趣的文章:

标签云: