实例:

public class Test{
    public static void main(String[] args){
        for(int i=1;i<=9;i++){
            for(int j=1;j<=i;j++){
                System.out.print(j+"*"+i+"="+j*i+"\t");
            }
            System.out.print("\n");
        }
    }
}

运行结果:

JAVA 99乘法表实例

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2021-11-17
  • 2022-12-23
  • 2021-12-05
猜你喜欢
  • 2021-12-09
  • 2021-12-07
  • 2021-06-01
  • 2021-12-23
相关资源
相似解决方案