编写一个C程序,用于打印九九乘法表
发布网友
发布时间:2022-05-05 17:29
我来回答
共3个回答
热心网友
时间:2022-06-27 20:35
#include <stdio.h>
main()
{
int a=1,b=1,n;
while(a<=9)
{
b=1;
while(b<=a)
{
printf("%d*%d=%d ",b,a,a*b);
b++;
}
printf("\n");
a++;
}
system("pause");
}
参考资料:http://zhidao.baidu.com/question/11639411.html?si=3
热心网友
时间:2022-06-27 20:36
//using for loop
#include <stdio.h>
void main()
{
int a,b;
for(a=1;a<10;a++)
{
for(b=1;b<=a;b++)
{
printf("%d*%d=%2d ",a,b,a*b);
}
printf("\n");
}
}
热心网友
时间:2022-06-27 20:36
main()
{
int i=1,j=1,k;
while(i<=9)
{
j=1;
while(j<=i)
{
printf("%d*%d=%d ",i,j,i*j);
j++;
}
printf("\n");
i++;
}
getch();
}