九九乘法表

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<windows.h>
#include<stdlib.h>
#include<time.h>windows

int main()
{
    int a = 1;
    int b = 1;
    for (a = 1; a <= 9; a++)
    {
        for (b = 1; b <= a; b++)
        {
            printf("%d*%d=%2d ", a, b,a*b);
        }
        printf("\n");
    }ide

    return 0;
}string

2d表明右對齊,-2d表明左對齊it

相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息