阶梯式九九乘法表
Posted chenjiajiale
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阶梯式九九乘法表相关的知识,希望对你有一定的参考价值。
package first;
public class 九九乘法表 {
public static void main(String [] args){
int a,b;
for (a=1;a<=9;a++){
for (b=1;b<=a;b++){
System.out.print(b+"*"+a+"="+a*b+" ");
}
System.out.print(" ");
}
}
}
以上是关于阶梯式九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章