<script>
function showtxt(phrase) /* recebe paramentos de textos para exibir um document.write e chama a função breakline*/ {
document.write(phrase);
breakline();
}
function breakline() /* Essa função pula 2 linha utiliando <br><br>*/ {
document.write("<br><br>");
}
var nInicial = 30;
while(nInicial <= 40 ){
/* While inicia mostrando o número e +1*/
showtxt("Número: " + nInicial);
nInicial = nInicial + 1;
if(nInicial == 33){ /* Se o número for igual a 33, mostra txt e +1*/
showtxt("Você não" );
nInicial = nInicial + 1;
} else if(nInicial == 37){ /* Se o número não for 33 e for igual a 37, mostra txt e +1*/
showtxt("Você não" );
nInicial = nInicial + 1;
}
}
showtxt("Fim");
</script>