<!DOCTYPE html>
<html lang="en">
<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>Licencia señor </title>
</head>
<body>
<h1>¿Realmente puede usted conducir un vehiculo?</h1>
<script>
//Declarando las funciones a utilizar
function saltarLinea(){
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
//declarando las variables
var edad = parseInt(prompt("Ingrese su edad"));
var licencia = prompt("¿Usted cuenta con licencia de conducir?");
// Condicional if para saber si el señor puede conducir o no
if(edad >= 18){
if(licencia == Sí){
imprimir("usted puede conducir");
}
}else {
imprimir("Usted no cumple con uno de los requisitos para conducir");
}
</script>
</body>
</html>