Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

[Proyecto] programa calcular IMC

<meta charset="UTF-8">

<h1>PROGRAMA CALCULAR IMC</h1>

<script>

function saltarlinea() {

document.write("<br>");
document.write("<br>");
document.write("<br>");
document.write("<br>");
}

function imprimir(frase) {

    document.write("<big>" + frase + "</big>");

    saltarlinea();

}

function carcularImc(peso,altura,nombre){
    return  (peso/(altura*altura));

}

nombre = prompt("informe su nombre")
pesoInformado = prompt(nombre + ", informe su peso")
alturaInformado = prompt(nombre + ", informe su altura")

imcCalculado = carcularImc(pesoInformado,alturaInformado)

imprimir(nombre+ ", su imc calculado es: " + imcCalculado);


</script>
1 respuesta

Hola Rosa, muy buen avance del curso, te comparto el código que realicé con ciertas modificaciones más que nada en los nombres.

<script>
    function saltarLinea() {
        document.write("<br>");    
        document.write("<br>");    
        document.write("<br>"); 

    }  
    function imprimir(frase) {
        document.write(frase);
        saltarLinea();
    }

    function calcularImc(weight,height){

        imc = weight/(height*height);

        return imc;

    }

    name = prompt("Informe su nombre")
    weightInformed = prompt(name + " Informe su peso: ")
    heightInformed = prompt(name + " Informe su altura: ")

    imcCalculated = calcularImc(weightInformed,heightInformed)

    imprimir(name + ", su imc calculado es: " + imcCalculated);

</script>

Saludos desde Perú.