- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 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>"
)
falsting 29.12.2016 15:11 # +3
ProctologistForYou 29.12.2016 22:51 # 0
guest 03.01.2017 17:47 # 0