1. JavaScript / Говнокод #21910

    −49

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    var n = prompt() - -1;
    document.write(
    	"<table><tr style='font-weight:bold'>" +
    	Array.apply(null, Array(n))
    		.map(function(_, i){
    			return "<td style='font-weight:bold'>" +
    				Array.apply(null, Array(n))
    				.map(function(_, j){
    					return (i || j) ? (i || 1)*(j || 1) : "";
    				}).join("</td><td>") + "</td>";
    		}).join("</tr><tr>") +
    	"</tr></table>"
    )

    Таблица умножения

    Запостил: Siri0n, 28 Декабря 2016

    Комментарии (3) RSS

    Добавить комментарий