#include<stdio.h>
main()
{
    int i,j,p;
    for(i=1;i<=9;i++)
    {
        for(j=1;j<=i;j++)
        {
            p=i*j;
            printf("%d*%d=%d\t",i,j,p);

        }
        printf("\n");
    }
}




运行结果:


简单的九九乘法表

相关文章:

猜你喜欢
  • 2021-05-05
  • 2022-12-23
  • 2021-08-14
相关资源
相似解决方案