标题:我写的9x9口诀表大家看看。新手多支持。
取消只看楼主
l11211002
Rank: 1
等 级:新手上路
帖 子:18
专家分:5
注 册:2009-11-11
结帖率:66.67%
 问题点数:0 回复次数:0 
我写的9x9口诀表大家看看。新手多支持。
/* Note:Your choice is C IDE */
#include "stdio.h"
#include "conio.h"
void main()
{
    int i,j,result;
    printf ( "\n");
    for (i=1;i<10;i++)
    {
        for (j=1;j<=i;j++)
        {
            result = i * j;
            printf ("%d*%d=%-3d",i,j,result);
        }
            printf ("\n");
    }
        getch();
}
搜索更多相关主题的帖子: 口诀 
2009-11-11 13:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-291914-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.081394 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved