-
Notifications
You must be signed in to change notification settings - Fork 0
/
js_0602_practice_hw.html
53 lines (45 loc) · 1.17 KB
/
js_0602_practice_hw.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
<!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>
// 畫星星 HW 20220601
// 輸入一個數 會顯示如下圖
// input = 5 時
// 1*****
// 2****
// 3***
// 4**
// 5*
// i-- input 多 => 少
// 方法一
// 內層 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--) {
document.write(i);
for (let j = 1; j <= i; j++) {
document.write(j);
}
document.write('<br>');
}
</script>
</body>
</html>