<title> Qual meu IMC? </title>
<html lang="pt-br"></html>
<script>
function skipline() {
document.write("<br>");
}
function show(phrase) {
document.write(phrase);
document.write("<hr>")
skipline();
}
var weight = 65;
var height = 1.81;
var imc = weight / (height * height);
var imcRound = Math.round(imc);
show("Meu IMC é: " + imcRound + ".");
if(imcRound < 18.5) {
show("Você está abaixo do peso!");
}
else
if (imcRound >= 18.5 && imcRound <= 24.9) {
show("Você está no peso ideal!");
}
else
if (imcRound >= 25) {
show("Você está acima do peso!");
}
</script>