package com.pzz.structure; public class ForDemo04 { public static void main(String[] args) { //1.打印第一列,大家都会 //2.把固定的1再用一个循环包起来 //3.去掉重复项,i <= j //4.调整样式 for (int j = 1; j <= 9; j++) { for (int i = 1; i <= j; i++) { System.out.print(j + "*" + i + "=" + (j * i)+"\t"); } System.out.println(); } } }
print起的作用是:每行的式子之间不换行;
"\t"起的作用是:每行式子之间会有个空格;
println()起的作用是:中间的循环结束一次(即每行输出完之后)时输入空格并换行
重要的不是99乘法表,而是拆解问题的能力