Hola a todos. Este es mi aporte para el ejercicio de cálculo de IMC. En e video de instrucción, el resultado para Carlos está mal; debe considerarse como pre obesidad, según el cuadro de ejemplo.
<meta charset="UTF-8">
<h1>PROGRAMA QUE MUESTRA EL IMC</h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>" + "<hr>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
function imcCalc (weight, height) {
return (weight / (height*height))
}
var nombre = prompt ("Ingrese su nombre: ");
var personWeight = prompt ("Enter weight : ");
imprimir("Peso: " + personWeight);
var personHeight = prompt ("Enter height : ");
imprimir("Altura: " + personHeight);
var imc = imcCalc(personWeight,personHeight);
imprimir ("Su imc es: " + imc);
if (imc < 18.5){
imprimir ("Under ponderal")
}
if (imc >= 18.5){
if(imc<25){
imprimir("Normal")
}
}
if (imc>=25){
if(imc<29){
imprimir("Pre obesity");
}
}
if (imc >= 30){
imprimir ("Overweight")
}
</script>
Un saludo.