-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaula07.html
More file actions
40 lines (38 loc) · 774 Bytes
/
aula07.html
File metadata and controls
40 lines (38 loc) · 774 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Array multidemensional</title>
<script type="text/javascript">
var dia_semana = prompt('Digite o dia da semana que você quer, de 1 a 7');
switch(dia_semana){
case '1':
document.write("Segunda");
break;
case '2':
document.write("Terça");
break;
case '3':
document.write("Quarta");
break;
case '4':
document.write("Quinta");
break;
case '5':
document.write("Sexta");
break;
case '6':
document.write("Sabado");
break;
case '7':
document.write("Domingo");
break;
default:
document.write("Digite uma opção válida");
break;
}
</script>
</head>
<body>
</body>
</html>