用while循环打印乘法9乘9表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用while循环打印乘法9乘9表相关的知识,希望对你有一定的参考价值。

public class TestTable

public static void main(String[] args)

int i= 1;
System.out.println(" Multiplication Table" );
System.out.println("------------------------------------");
System.out.print( " " + "|");
for( int k=1;k<=9;k++)

System.out.print( " " + i);

System.out.println();
while(i<=9 )


System.out.print(i+"|");
for ( int j=1;j<=9;j++)

if (i*j<10)
System.out.print(" "+i*j);
else
System.out.print(" "+i*j);

System.out.println();

i++;



这是用java实现的,如果是VC程序,可以很容易更改的,有机会大家可以共同探讨啊。呵呵!!
参考技术A void main()

int i=1,j;
while(i<10)
for (j=i;j<10;j++)
cout<<i*j<<" ";
cout<<endl;
i++;
参考技术B 用什么编写说清楚了

以上是关于用while循环打印乘法9乘9表的主要内容,如果未能解决你的问题,请参考以下文章

用C# while循环 打印 9 9 乘法表

如何用do…while循环输出九九乘法表?

python—用for循环while循环和一句话打印九九乘法表

用Python的while循环做九九乘法表

使用while循环打印出九九乘法口诀表

c#中利用while循环语句结构实现九九乘法表