1
resposta

Retorno de funções

<meta charset="utf-8">

<script type="text/javascript">

    function pulaLinha() {
        document.write("<br>")
    }

    function mostra(frase) {
        pulaLinha();
        document.write(frase);
        pulaLinha();
    }

    function calculaIMC(peso, altura) {
        var imc = peso / (altura * altura);
        return imc;
    }

    var peso = 84;
    var altura = 1.78;

    imcCarlos = calculaIMC(84, 1.78)
    mostra("O IMC de Carlos é " + "<b>" + imcCarlos.toFixed(2) + "</b>");

    imcPatricia = calculaIMC(59, 1.69)
    mostra("O IMC de Patricia é " + "<b>" + imcPatricia.toFixed(2) + "</b>");

    somaIMC = imcCarlos + imcPatricia;

    mostra("A soma dos IMC's é: " + "<b>" + somaIMC.toFixed(2) + "</b>");

</script>
1 resposta

Gostei bastante do uso do método .toFixed(), show de bola Claudinei!!!