<meta charset="UTF-8">
<script>
function pulaLinha(){
document.write("<br><br>");
}
function escreva(string) {
document.write(string);
}
// Wilhe, parares de 1 a 100
cont = 1;
while (cont <= 100) {
if(cont % 2 == 0){
document.write(cont);
pulaLinha();
}
cont++;
}
escreva("FIM")
</script>