1 、 /* 输出 9*9 口诀。共 9 行 9 列, i 控制行, j 控制列。 */
#include "stdio.h"
main()
{int i,j,result;
for (i=1;i<10;i++)
{ for(j=1;j<10;j++)
{
result=i*j;
printf("%d*%d=%-3d",i,j,result);/*-3d 表示左对齐,占 3 位 */
2023年08月26日
1 、 /* 输出 9*9 口诀。共 9 行 9 列, i 控制行, j 控制列。 */
#include "stdio.h"
main()
{int i,j,result;
for (i=1;i<10;i++)
{ for(j=1;j<10;j++)
{
result=i*j;
printf("%d*%d=%-3d",i,j,result);/*-3d 表示左对齐,占 3 位 */
Powered By
Copyright Your WebSite.Some Rights Reserved.