-
Notifications
You must be signed in to change notification settings - Fork 0
/
js_0602_practice_99.html
64 lines (55 loc) · 1.58 KB
/
js_0602_practice_99.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//練習99乘法表
//console.log('for 99');
//1*1=1.........1*9=9
//2*1=2.........2*9=18
//3*1=3.........3*9=27
//4*1=4.........4*9=36
//5*1=5.........5*9=45
//9*1=9.........9*9=81
for(let i = 1; i <= 9; i++ ){
//console.log(i);
for(let j = 1; j > 0 ; j++){
document.write(`${i} * ${j} = ${i*j};
`);
}
document.write('<br>');
}
// 方法一
// 內層 j--
// let input = 5;
// for (let i = 0; i < input; i++) {
// // 1.蓋大樓
// // document.write(i);
// // 2.畫星星
// for (let j = input; i < j; j--) {
// // document.write(j);
// document.write('*');
// }
// document.write('<br>');
// }
// 方法二
// 外層 i--
// let input = 5;
// for (let i = input; i > 0; i--) {
// // 1.蓋大樓
// document.write(i);
// // 2.畫星星
// for (let j = 1; j <= i; j++) {
// document.write(j);
// }
// // 2.畫星星 end
// document.write('<br>');
// }
</script>
</body>
</html>