9*9口诀代码(tc)
#include"stdio.h"#include"conio.h"
main()
{
int i,j;
for(i=1;i<=9;i++)
{
for(j=1;j<=i;j++)
{
printf("%d*%d=%-3d",i.j,i*j);
};
printf("\n");
}
getch();
}
2012-02-01 14:26
2012-02-01 14:27
2012-02-01 16:28
2012-02-01 20:36
2012-02-02 12:02

程序代码:#include"stdio.h"
#include"conio.h"
main()
{
int i,j;
for(i=1;i<=9;i++)
{
for(j=1;j<=i;j++)
{
printf("%d*%d=%-3d",i,j,i*j); /这里LZ用成了点./
};
printf("\n");
}
getch();
}
2012-02-02 13:28
2012-02-02 13:51
2012-02-02 14:16
2012-02-02 14:18
2012-02-19 15:30