-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatividades-fixacao-aritméticos.html
71 lines (63 loc) · 2.12 KB
/
atividades-fixacao-aritméticos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>javascript - Atividade fixação aritmeticos</title>
<script>
var nome = prompt ("Digite sem nome: ")
var altura = prompt ("Digite sua altura em centímetros: ")
var peso = prompt ("Digite seu peso: ")
altura = parseFloat (altura)
peso = parseFloat (peso)
//conversão da altura em metros(m)
altura /= 100
IMC = peso / altura**2
if (IMC < 16) {
M = "<b>Baixo peso muito grave</b>"
//document.write(M)
}
if (IMC >= 16 && IMC <= 16.99) {
M = "<b>Baixo peso grave</b>"
//document.write (M)
}
if (IMC >= 17 && IMC <= 18.49) {
M = "<b>Baixo peso</b>"
//document.write (M)
}
if (IMC >= 18.50 && IMC <= 24.99) {
M = "<b>Peso normal</b>"
//document.write (M)
}
if (IMC >= 25 && IMC <= 29.99) {
M = "<b>Sobrepeso</b>"
//document.write (M)
}
if (IMC >= 30 && IMC <= 34.99) {
M = "<b>Obesidade grau I</b>"
//document.write (M)
}
if (IMC >= 35 && IMC <= 39.99) {
M = "<b>Obesidade grau II</b>"
//document.write (M)
}
if (IMC > 40) {
M = "<b>Obesidade grau III</b>"
//document.write (M)
}
document.write (nome + " possui índice de massa corporal igual a " + IMC + ", sendo classificado como: " + M)
/*
a) Se M estiver abaixo de 16 : Baixo peso muito grave
b) Se M estiver entre 16 e 16,99: Baixo peso grave
c) Se M estiver entre 17 e 18,49: Baixo peso
d) Se M estiver entre 18,50 e 24,99: Peso normal
e) Se M estiver entre 25 e 29,99: Sobrepeso
f) Se M estiver entre 30 e 34,99: Obesidade grau I
g) Se M estiver entre 35 e 39,99: Obesidade grau II
h) Se M for maior que 40: Obesidade grau III
*/
</script>
</head>
<body>
</body>
</html>