-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBirthYearZodiac.html
More file actions
45 lines (42 loc) · 1.36 KB
/
BirthYearZodiac.html
File metadata and controls
45 lines (42 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!-- <script>
let ten = ["갑", "을", "병", "정", "무", "기", "경", "신", "임", "계"];
let twelveAnimal = [
"자",
"축",
"인",
"묘",
"진",
"사",
"오",
"미",
"신",
"유",
"술",
"해",
];
let input = parseInt(prompt("태어난 연도를 입력해주세요"));
let tenIndex = (input - 4) % 10;
let twelveAnimalIndex = (input - 4) % 12;
// 결과를 출력합니다.
const tenTwelveYear = ten[tenIndex] + twelveAnimal[twelveAnimalIndex];
alert(`${tenTwelveYear}년도에 태어나셨네요`);
</script> -->
<script>
let ten =["갑","을","병","정","무","기","경","신","임","계"]
let twelveAnimal = ["자","축","인","묘","진","사","오","미","신","유","술","해"]
let input = Number(prompt("태어난 연도를 입력해주세요"))
let tenIndex = (input-4) % 10
let twelveAnimalIndex = (input- 4) %12
const tenTwelveYear = ten[tenIndex] + twelveAnimal[twelveAnimalIndex];
alert(`${tenTwelveYear}년도에 태어나셨네요`);
</script>
</body>
</html>