乘法口诀表

来源:互联网 发布:绘制贴图的软件 编辑:程序博客网 时间:2024/04/30 11:17
/*
乘法口诀表
*/
public class Test6{
public static void main(String[] args){
for(int i=1;i<10;i++){
for(int j=1;j<=i;j++){
int x=i*j;
System.out.print(j+"*"+i+"="+x+" ");
}
System.out.println();
}
}
}
0 0
原创粉丝点击