主题:请教c++乘法编程表的详细解释
// rty.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
main()
{ int i,j;
for (i=1;i<=9;i++)
{ for (j=1;j<=9;j++)
if(i>=j)
printf("%d*%d=%d\t",i,j,i*j);
printf("\n");
}
} (这个程序如何解释)能不能快一点我等的急用,2分钟之内.
谢谢
//
#include "stdafx.h"
main()
{ int i,j;
for (i=1;i<=9;i++)
{ for (j=1;j<=9;j++)
if(i>=j)
printf("%d*%d=%d\t",i,j,i*j);
printf("\n");
}
} (这个程序如何解释)能不能快一点我等的急用,2分钟之内.
谢谢