<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<script>
function breakRow(){
document.write("<br>");
document.write("<br>");
}
function show(frase){
document.write(frase);
breakRow();
}
var eventosRealizados = parseInt(prompt("Informe o total de eventos realizados"));
var quantidadeInformada = 1;
var gastoTotal = 0;
while(quantidadeInformada <= eventosRealizados){
var gastoInformado = parseInt(prompt("Informe os gastos com o evento"));
gastoTotal = gastoTotal + gastoInformado;
quantidadeInformada++;
}
show(gastoTotal / eventosRealizados);
</script>
</head>
<body>
</body>
</html>