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

SDUT-2561 九九乘法表

程序员文章站 2022-06-05 20:10:10
...

SDUT-2561 九九乘法表

Code

#include <stdio.h>

int main()
{
    int row,col,n;
    while(scanf("%d",&n)!=EOF)
    {
        for(row=1; row<=n; row++)
        {
            for(col=1; col<=row; col++)
            {
                printf("%d*%d=%d",col,row,row*col);
                if(col != row)
                    printf(" ");
            }
            printf("\n");
        }
    }
    return 0;
}
反思:for循环练习,一个控制行一个控制列,打印即可。