码迷,mamicode.com
首页 > 其他好文 > 详细

乘法表

时间:2018-05-05 19:41:49      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:length   microsoft   for   ack   ons   comm   sha   end   log   

乘法表

/*
 * 输入数字3,生成3*3的数字乘法表。
 * */

function mulTable(num) {
    "use strict";
    let table = new Array(num), len = table.length;

    for (let i = 0; i < len; i++) {
        table[i] = new Array(num);
    }
    for (let row = 0; row < len; row++) {

        for (let col = 0, len = table[row].length; col < len; col++) {
            table[row][col] =""+row+"*"+col+"=" +row * col;
        }
    }
    return table;
}

console.log(mulTable(4));

技术分享图片

 

**

乘法表

标签:length   microsoft   for   ack   ons   comm   sha   end   log   

原文地址:https://www.cnblogs.com/moyuling/p/8995638.html

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