Java经典编程题50道之十六
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java经典编程题50道之十六相关的知识,希望对你有一定的参考价值。
输出九九乘法表。
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经典编程题50道之十六的主要内容,如果未能解决你的问题,请参考以下文章