java打印九九乘法表

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

}
}
posted @ 2022-05-10 18:03  韶光贱  阅读(28)  评论(0)    收藏  举报