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;
}
输出结果如图
上一篇: 性能优化