<!DOCTYPE html>
<html>
<head>
<title>Exercicio Gerações</title>
<meta charset="UTF-8">
</head>
<body>
<h1>Exercício Gerações no Brasil.</h1>
<script>
function pulaLinha () {
document.write("<br>");
}
function mostra(mensagem) {
document.write(mensagem);
pulaLinha()
}
var anoAtual= 2022;
var tempoTotal = anoAtual - 1500;
var Gerações = tempoTotal/ 28;
mostra("Desde 1500 houveram em média " + Math.round(Gerações) + " gerações no Brasil.")
</script>
</body>
</html>