上一篇的九九乘法表是用do...while循环语句实现的,据大神说"如果int i=9; int n=9; 没有必要共享数据给其他方法,就最好定义在方法里面,那么就可以不浪费内存,所以建议使用for遍历!"
这是我用for循环做的九九乘法表
//for 循环的九九乘法表
/*作者 DengLl
名称:九九乘法表
*/
public class fxh
{
public static void main (String args[])
{
for (int i=1;i<10;i++)
{
for (int j=1;j<10;j++)
{
if(j<=i)
{
System.out.print(i+"*"+j+"="+(i*j)+"");
}
}
System.out.println("");
}
}
}
|
|