-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathswitch.html
More file actions
69 lines (58 loc) · 874 Bytes
/
switch.html
File metadata and controls
69 lines (58 loc) · 874 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
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
<!DOCTYPE html>
<html>
<head>
<title>Switch</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
function f()
{
var x=document.getElementById("n").value;
x=Number(x);
var result="";
switch(x)
{
case 0:
result="Zero";
break;
case 1:
result="One";
break;
case 2:
result="Two";
break;
case 3:
result="Three";
break;
case 4:
result="Four";
break;
case 5:
result="Five";
break;
case 6:
result="six";
break;
case 7:
result="Seven";
break;
case 8:
result="Eight";
break;
case 9:
result="Nine";
break;
default:
result="Error";
break;
}
document.getElementById("result").value=result;
}
</script>
</head>
<body>
N<input type="text" id="n"><br/>
Word<input type="text" id="result"><br/>
<input type="button" value="Find" onclick="f()"><br/>
</body>
</html>