九九乘法表

public class Print99 {

public static void main(String[] args) {

for (int x = 1; x <= 9; x++) {
for (int y = 1; y <= x; y++) {
System.out.print(y + "*" + x + "=" + x * y + " ");
}
System.out.println();
}
}
原文地址:https://www.cnblogs.com/bjanzhuo/p/3576030.html