Scilab 5.5.1
Please note that the recommended version of Scilab is 6.1.0. This page might be outdated.
See the recommended documentation of this function
break
ключевое слово для прерывания циклов
Описание
Внутри цикла for
или while
команда break
насильно прерывает цикл.
Примеры
k=0; while 1==1, k=k+1; if k > 100 then break end; end
Comments
Add a comment:
Please login to comment this page.