1 回答
qq_清风明月_9
TA贡献9条经验 获得超1个赞
public class test {
public static void main(String[] args) {
for(int i=1;i<=9;i++){
for(int x=1;x<=9-i;x++){
System.out.print(" ");
}
for(int j=1;j<=i;j++){
System.out.print(j+"*"+i+"="+i*j+" ");
}
System.out.println();
}
}
}
添加回答
举报
0/150
提交
取消