<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"
name="author"
content="@Cristobal"
>
<title>Ejercicio</title>
</head>
<body>
<h1>Desarrollo IMC</h1>
<script>
function saltoLinea() {
document.write("<br><br><br><hr>");
}
function escribir(frase) {
document.write("<big>"+ frase + "</big>");
}
function calcularImc(peso,altura) {
imc = peso / (altura * altura);
return imc;
}
//Prompt
nombre = prompt("Ingrese Nombre: ");
var peso = prompt("Ingrese Peso: ");
var altura = prompt("Ingrese Altura: ");
calcularImc(peso, altura);
escribir("El indice IMC de " + nombre + " es: " + Math.round(imc));
saltoLinea();
</script>
</body>
</html>