文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序练习-打印乘法口诀

C程序练习-打印乘法口诀

时间:2010-07-19  来源:chengxiaopeng

    打印乘法口诀,这让我想到了上小学时,在文具盒上面印的就是这个样子,呵呵挺好玩的。

#include <stdio.h>

int main(int arc,char *argv[])
{
    int i,j;
    for (i=1;i<10;i++)
    {
        for (j=1;j<=i;j++)
        {
            printf ("%d * %d = %d ",j,i,i*j);
        }
        printf("\n");
    }
    
    system("pause");
    return 1;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载