99乘法表

来源:互联网 发布:监测数据弄虚作假 编辑:程序博客网 时间:2024/05/05 20:05
public static void print99() {for (int x = 1; x <= 9; x++) {for (int y = 1; y <= x; y++) {System.out.print(y + "*" + x + "=" + y * x + "\t ");}System.out.println();}}