打印9*9乘法口诀表
解析:利用for循环解决
代码如图所示:
public class Cc {public static void main(String[] args) {for (int i = 1; i < 10; i++){ //从1遍历到9 for(int j = 1; j < i; j++){ System.out.print(j + "*" + i +"=" + (j * i) + " "); //输出System.out.println(); //换行}}}
}
运行效果如图所示: