利用for循环打印乘法表
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int a[9][9];
int i,j,k;
for (i=1;i<10;i++)
{
for(j=1;j<10;j++)
{
if(i>=j)
{
k=i*j;
printf("%d*%d=%d ", i, j, i*j);
}
}
printf("\n");
}
return 0;
}