标签:putc main int 乘法 lib system char ret bsp
#include <stdio.h>
#include <stdlib.h>
int main()
{
int n = 5;
int i, j;
for (i = 1; i <= n; i++){
for (j = 1; j <= i; j++){
printf(" %d * %d = %d",i, j, i * j);
}putchar(‘\n‘);
}
system("pause");
return 0;
}
标签:putc main int 乘法 lib system char ret bsp
原文地址:https://www.cnblogs.com/Leafbud/p/12586754.html