Java经典编程题--九九乘法表
程序员文章站
2022-06-10 08:12:23
...
输出九九乘法表。
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经典编程题--九九乘法表的详细内容,更多请关注其它相关文章!
上一篇: 如何实现某一行文字首页不显示但是内页显示