第10周项目3--乘法口诀表

/*  
* Copyright (c) 2013, 烟台大学计算机学院  
* All rights reserved.  
* 作    者: 沈远宏  
* 完成日期:2013 年10月29日
* 版 本 号:v1.0  
* 问题描述:乘法口诀表 
*/#include <iostream>

using namespace std;

int main()
{
    int i,j;
    for(i=1; i<=9; ++i)
    {
        for(j=1; j<=i;++j)

        cout<<i<<"*"<<j<<"="<<i*j<<" " ;
        cout<<endl;
    }
    cout<<endl;
    return 0;
}


运行结果:第10周项目3--乘法口诀表_第1张图片

心得体会:对不齐怎么办。。。看着很不整齐。。。

这个特别好玩,把每一个运算式子都看成※,这就跟型号图有异曲同工之妙了。

你可能感兴趣的:(第10周项目3--乘法口诀表)