Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Solucionado (ver solución)
Solucionado
(ver solución)
2
respuestas

Cálculo diferencia de edades

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <title>Cálculo diferencia de edades</title>
</head>

<body>
    <script>
        var yourBirthYear; //variable declaration in the gloabal scope
        var brotherBirthYear; //variable declaration in the gloabal scope
        var diferenciaEdades; //variable declaration in the gloabal scope

        function saltarLinea() {
            document.write("<br>");
        }
        function imprimir(frase) {
            document.write(frase);
        }
        imprimir("<h1>Cálculo diferencia de edades</h1>")
        saltarLinea();
        imprimir("Cuantos años de diferecia tienes con tu hermano?");
        saltarLinea();
        yourBirthYear = prompt("Dime en que año naciste?"); //askes for your BornYear
        brotherBirthYear = prompt("Dime en que año nacio tu hermano?"); //askes for your brother´s BornYear
        diferenciaEdades = Math.abs(yourBirthYear - brotherBirthYear); //use of the Absolute value function to avoid negative numbers
        imprimir("Nuestra diferencia de edad es: " + diferenciaEdades); //print out on a web document the difference between you and your brother.
    </script>
</body>

</html>
2 respuestas

Hola Gustavo

Gracias por compartir tu código, está muy bien felicitaciones.

Si tienes alguna pregunta sobre el contenido de los cursos, estaremos aquí para ayudarte.

Si este post te ayudó, por favor, marca como solucionado ✓. Continúa con tus estudios
solución!

Thanks Jose, it´s just a little effort. I´ll keep honing my programming skills.