You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
while()
Exemplos
int i=0;
while(i<80) {
line(30, i, 80, i);
i = i +5;
}
Descrição
Controla uma seqüência de repetições. A estrutura while executa uma série de comandos continuamente enguanto a expressão for verdadeira ( true).
A expressão precisa ser atualizada durante as
repetições ou a execução não
sairão do laço do while().