码迷,mamicode.com
首页 > 编程语言 > 详细

c++程序—乘法表

时间:2020-02-29 14:54:18      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:string   ctime   乘法口诀   span   ring   乘法   i++   names   pause   

  #include<iostream>
using namespace std;
#include<string>
#include<ctime>

int main()
{
    //乘法口诀表
    for (int j=1; j < 10; j++) 
    {
        for (int i = 1; i <= j; i++)
        {
            cout << i << " * " << j << " = " << i * j << "\t";
        }
        cout << endl;
    }



    
    system("pause");
    return 0;

}

 

c++程序—乘法表

标签:string   ctime   乘法口诀   span   ring   乘法   i++   names   pause   

原文地址:https://www.cnblogs.com/hackerteen/p/12382701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!