<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> PROGRAMA CALCULAR EL IMC</title>
</head>
<body>
<h1> PROGRAMA CALCULAR EL IMC</h1>
<SCRipt>
function saltoDeLinea(){
document.write("<br>");
document.write("<hr>");
document.write("<br>");
}
function imprime(frase){
document.write(frase);
saltoDeLinea();
}
function calcularIMC(peso, altura){
return peso/(altura*altura);
}
nombre = prompt("Ingrese su nombre");
pesoInfo = prompt(nombre + " Ingrese su peso");
alturaInfo = prompt(nombre+ " Ingrese su altura");
imcCalculado = calcularIMC(pesoInfo, alturaInfo);
imprime(nombre+" su IMC es: " + imcCalculado);
</SCRipt>
</body>
</html>