欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C语言编写一九九乘法口诀表

程序员文章站 2022-05-12 16:33:20
...

小白一个,目前正在自学C语言,写了一个九九乘法口诀表
使用两个for循环结构

#include <stdio.h>
int main()
{
int a,b,product;
for (a=1;a<10;a++)
   {
   for (b=1; b<=a;b++)
   {product=a*b;
   printf("%d*%d=%d \t",a,b,product);
   }
   printf("\n");
  }
  return 0;
}


输出结果如图
C语言编写一九九乘法口诀表

相关标签: c语言学习