九九乘法表
#include <stdio.h>
int main()
{
for(int i = 1; i < 10; i++)
{
for(int j = 1; j <= i; j++)
{
printf("%d * %d = %d\t", i, j, i*j);
}
printf("\n");
}
return 0;
}
标签:10,九九乘法,int,++,include,main
From: https://www.cnblogs.com/khrushchefox/p/17253107.html