-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart2_5_1.html
More file actions
33 lines (31 loc) · 829 Bytes
/
Copy pathpart2_5_1.html
File metadata and controls
33 lines (31 loc) · 829 Bytes
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
<!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>
/*var num1 = 15;
var num2 = 2;
var result;
result = num1 + num2;
document.write(result,"<br>")
result = num1 - num2;
document.write(result,"<br>")
result = num1 * num2;
document.write(result,"<br>")
result = num1 / num2;
document.write(result,"<br>")
result = num1 % num2;
document.write(result,"<br>")*/
var t1 = "it수요 ";
var t2 = "예측 ";
var t3 = "웹 ";
var t4 = "프로그래밍";
var result = t1 + t2 + t3 + t4;
document.write(result);
</script>
</body>
</html>