package Struct; public class ForDemo04 { public static void main(String[] args) { /* 1.先打印第一列 2.把固定的1再用一个循环包起来 3.去掉重复项,j<=i 4.调整样式 */ for (int j = 1; j <= 9; j++) { for (int i = 1; i <= j; i++) { System.out.print(j +"*"+ i +"="+ (1*i) +"\t"); } System.out.println(); } } }
运行结果