-
Notifications
You must be signed in to change notification settings - Fork 0
/
cal.html
30 lines (28 loc) · 867 Bytes
/
cal.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
<!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>
<script>
function cal(){
let answer = document.getElementById('answer').value;
let s = document.getElementById('problem').value;
let solution=eval(s)
if(answer==solution){
alert('정답');
}
else{
alert('틀렸습니다. 정답은 '+solution);
}
}
</script>
</head>
<body>
<h1>Math Quiz</h1>
<input type="text" id="problem" value="12*2+20-30"><br>
<input type="text" id="answer">
<button onclick="cal()">정답 알아보기</button>
</body>
</html>