- package com.test;
- /*
- 需求:九九乘法表输出
- 思路:九九乘法表样式如下:
- 1*1=1
- 1*2=2 2*2=4
- 1*3=3 2*3=6 3*3=6
- 1*4=4 2*4=8 3*4=12 4*4=16
- .......
- 1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81
- */
- public class TestTwo {
- public static void main(String[] args) {
- int mul = 1;
- for (int i = 1; i <= 9; i++) {
- for (int j = 1; j <= i; j++) {
- mul = i * j;
- System.out.print(j + "*" + i + "=" + mul + "\t");
- }
- System.out.println();
- }
- }
- }
复制代码 ,楼主看一下这个是否看的懂哦?不明白的地方直说 |