public class lianxi2 {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根
    for (int a = 1;a<=9;a++)    {
        
        for(int b=1;b<=a;b++){
            
        System.out.print(a+"*"+b+"="+a*b+"\t");
        
        }
        
        System.out.println();
        
    }

}
}

for循环输出九九乘法表

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
  • 2021-12-09
  • 2022-12-23
  • 2022-03-09
  • 2021-07-02
猜你喜欢
  • 2022-01-29
  • 2022-01-19
  • 2022-12-23
  • 2021-11-17
  • 2021-08-31
  • 2022-12-23
  • 2021-10-26
相关资源
相似解决方案