小白一个,求大佬public class Test_9x9 {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();}}只会正方向,反方向怎么弄?
添加回答
举报
0/150
提交
取消