乘法口诀表

Posted

tags:

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

#include <stdio.h>
void cfkj(int i, int j, int h)
{
 for (i = 1; i <= h; i++)
 {
  for (j = 1; j <= i; j++)
  {
   printf("%d*%d=%3d ", j,i, i*j);
  }
  printf("\n");
 }
}
int main()
{
 int a=1, b=1, h=0;
 printf("请输入行数:");
 scanf("%d", &h);
 cfkj(a, b,  h);
 return 0;
}


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

怎么用Python把这样的乘法口诀表打出来

python的乘法口诀表

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

python九九乘法口诀表

输出乘法口诀表

Python 乘法口诀表