九九乘除法 应该是每一个初学者刚学循环嵌入中最今典的一个算法题了吧
#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 i = 1;
int j = 1;
for (i = 1;i<=9;i++)
{
for(j = 1;j<=i;j++)
{
printf("%d*%d=%2d ",i,j,i*j);
}
printf("\n");
}
return 0;
}
先附上代码
提示:%2d 的2 是调节积数位置的 这样可以使得代码更好看
输出结果类似与这样
如果把%2d的2去掉输出结果就会显得不整齐
类似与这样 这种就是一些小细节 然后其它都可以通过看代码理解