请问下怎么完成步骤3,打印成这样的格式 1*1=1
1*2=2 2*2=4
1*3=3 2*3=6 3*3=9
······
-----------------------------------------------------------------------
/*
需求;打印一个99乘法表。
思路;1.定义一个类
2.为了可以运行,该类中定义一个main函数
3.将99乘法表的代码定义在main的函数中
步骤;1.用class关键字定义名称Demo99的类
2.定义main的函数
3.1*1=1
1*2=2 2*2=4
1*3=3 2*3=6 3*3=9
······
分析一下99乘法表
*/
class Demo99
{
public static void main(String[] args)
{
/*
99乘法表符合大圈套小圈的思想
用for嵌套循环
*/
for (int x =1;x<=9 ;x++ )
{
for (int y = 1;y<=x ;y++ )
{
System.out.print(y+"*"+x+"="+y*x+"\t");
}
}
System.out.println();
}
}
----------------------------------------------------------------------------------------------
|
|