Scilab 5.4.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
break
palavra-chave para interromper um laço ("loop") (significa "interromper (neste ponto)")
Descrição
Dentro de um laço for
ou while
loop, o comando break
força o fim do laço.
Exemplos
k=0; while 1==1, k=k+1; if k > 100 then break end; end
Report an issue | ||
<< abort | Control flow | case >> |