javascript 九九を計算する
- 作成日 2022.10.11
- javascript
- javascript
javascriptで、九九を計算するサンプルコードを記述してます。
環境
- OS windows11 home
- ブラウザ chrome 106.0.5249.103
九九を計算する
for文を2回使用すれば、九九の計算は全てできます。
for (let i = 1; i < 10; i++) {
for (let j = 1; j < 10; j++) {
console.log(`${i} × ${j} = ${i*j}`)
}
}
実行結果
テーブルで作成する場合は、document.writeを使用してhtmlを作成します。
let color;
document.write("<table border='1px'>");
for(let i = 1; i < 10; i++) {
document.write("<tr style='height:30px;'>");
for(let j = 1; j < 10; j++) {
if(j == 1 || i == 1) {
color = "#6667AB";
}
else {
color = "#fff";
}
document.write("<td style='width:25px;background-color:" + color + "'>" + i*j + "</td>");
}
document.write("</tr>");
}
document.write("</table>");
実行結果
-
前の記事
python エラー「ValueError: invalid literal for int() with base 10: ‘xxx’」が発生した場合の対処法 2022.10.11
-
次の記事
Flutter エラー「color == null || decoration == null Cannot provide both a color and a decoration」が発生した場合の解決方法 2022.10.11
コメントを書く