Fork me on GitHub

JAVA编译九九乘法表

 

public class jiu{
    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+"="+i*j+"\t");
            }
              System.out.println();
          }
        }
      }

posted @ 2022-01-13 13:35  Aoul  Views(47)  Comments(0Edit  收藏  举报