-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (79 loc) · 3.97 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<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>2024 SoftNight</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div id="main">
<button onclick="goToReadyFactor()">소인수분해 게임</button>
<button onclick="goToReadyBinDec()">진수 변환 게임</button>
<button onclick="goToReadyOperation()">사칙/비트연산 게임</button>
</div>
<!--소인수분해게임-->
<div id="ready_factor" style="display:none">
<h1>소인수분해 게임</h1>
<h2>문제 당 80에서 255 사이의 정수가 주어집니다.</h2>
<h2>먼저 정답을 외쳐 소인수분해 결과를 말하면 1점이 주어집니다.</h2>
<h2>예시1) Q: 63 -> A: 3 x 3 x 7</h2>
<h2>예시2) Q: 19 -> A: 19</h2>
<h2>정답을 외친 후 10초 내에 대답하지 못하거나, 오답을 말할 시 1점 감점됩니다.</h2>
<h2>먼저 3점을 얻으면 승리입니다.</h2>
<button onclick="goToFactor()">게임 시작</button>
</div>
<div id="factor" style="display:none">
<h1 id="factorNum" style="font-size: 50px;"></h1>
<button onclick="updateRandomFactorNum()">문제 생성</button>
</div>
<!--진수변환게임-->
<div id="ready_bindec" style="display:none">
<h1>진수변환 게임</h1>
<h2>문제 당 랜덤으로 이진수 혹은 십진수가 주어집니다.</h2>
<h2>먼저 정답을 외쳐 이진수를 십진수로, 십진수를 이진수로 바꿔 말하면 1점이 주어집니다.</h2>
<h2>예시1) Q: (0000110)2 -> A: 6</h2>
<h2>예시2) Q: 19 -> A: (0010011)2</h2>
<h2>정답을 외친 후 10초 내에 대답하지 못하거나, 오답을 말할 시 1점 감점됩니다.</h2>
<h2>먼저 3점을 얻으면 승리입니다.</h2>
<button onclick="goToBinDec()">게임 시작</button>
</div>
<div id="bindec" style="display:none">
<h1 id="bindecNum" style="font-size: 50px;"></h1>
<button onclick="updateRandomBinDecNum()">문제 생성</button>
</div>
<!--연산맞히기 게임-->
<div id="ready_operation" style="display:none">
<h1>연산맞히기 게임</h1>
<h2>문제 당 비트연산 혹은 사칙연산이 지워진 등식이 주어집니다.</h2>
<h2>먼저 정답을 외쳐 등식이 성립하는 연산 조합 중 하나를 말하면 1점이 주어집니다.</h2>
<h2>예시1) Q: 9 _ 6 _ 13 = 15 (AND, OR, XOR) -> A: (OR, OR) (XOR, OR)</h2>
<h2>예시2) Q: 7 _ 3 _ 2 = 13 (+, -, x) -> A: (+, x)</h2>
<h2>정답을 외친 후 10초 내에 대답하지 못하거나, 오답을 말할 시 1점 감점됩니다.</h2>
<h2>먼저 3점을 얻으면 승리입니다.</h2>
<button onclick="goToOperation()">게임 시작</button>
</div>
<div id="operation" style="display:none">
<h1 id="operationNum" style="font-size: 45px;"></h1>
<button onclick="updateOperationNum()">문제 생성</button>
</div>
<!--점수판-->
<div id="scoreboard" style="display:none">
<div class="player" id="player1">
<h1>백코더</h1>
<h1 class="score" id="score1">0</h1>
<button onclick="updateScore('score1', 1)">백코더 정답</button>
<button onclick="updateScore('score1', -1)">백코더 오답</button>
</div>
<div class="player" id="player2">
<h1>도전자</h1>
<h1 class="score" id="score2">0</h1>
<button onclick="updateScore('score2', 1)">도전자 정답</button>
<button onclick="updateScore('score2', -1)">도전자 오답</button>
</div>
</div>
</body>
</html>