n*n(乘法表)

Posted leafbud

tags:

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

#include <stdio.h>
#include <stdlib.h>


int main()
{
 int n = 5;
 int i, j;

 for (i = 1; i <= n; i++){
  for (j = 1; j <= i; j++){
   printf("  %d * %d = %d",i, j, i * j);
  }putchar(‘ ‘);
 }
 
 
 system("pause");
 return 0;
}

以上是关于n*n(乘法表)的主要内容,如果未能解决你的问题,请参考以下文章

99乘法表

n*n 矩阵乘法需要多少步?

python 乘法表打印菱形

java实现9*9乘法表

乘法表

python打印九九乘法表?