prg-lang-2 / week02 / task01.c
task01.c
Raw
#include <stdio.h>

int main(void)
{
    int x, y;

    for (y = 1; y < 10; y++)
    {
        for (x = 1; x < 10; x++)
        {
            if (x > y)
                break;
            printf("%4d", x * y);
        }
        printf("\n");
    }

    return 0;
}