How to round the result of a script, in case the script is IMC calculator

Asked

Viewed 13 times

0

IMC calculator
<h1>Calculadora IMC</h1>

<form name="FormInc" action=" " method="post">

Enter your weight:

Enter your height:

<script type="text/javascript">
var peso;
var altura;
var imc = peso/(altura*altura);

function calculo() {

    peso = document.FormInc.pe.value; 
    altura = document.FormInc.alt.value;

    imc = peso/(altura*altura);

    if(imc < 18.5){
    document.write("CLASSIFICAÇÃO: MAGREZA" + "<br>SEU IMC: " + imc); 
}else if(imc > 18.5 && imc < 25){
    document.write("CLASSIFICAÇÃO: NORMAL" + "<br>SEU IMC: " + imc);
}else if(imc > 25 && imc < 30){
    document.write("CLASSIFICAÇÃO: SOBREPESO" + "<br>SEU IMC: " + imc);
}else if(imc > 30){
    document.write("CLASSIFICAÇÃO: OBESIDADE" + "<br>SEU IMC: " + imc);
}

}
</script>
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.