Social Sciences, asked by andy5106, 1 year ago

What command is used to exit from the middle of the loop in scilab?

Answers

Answered by cheryl2
4
The command used to exit from the middle of the loop in scilab is continue..


Hope this is helpful.
Answered by sailorking
0

The command used for exiting from a running loop in a scilab program is "continue." When this command is encountered in the program, it immediately gets the control out of the iterating body or out of the loop, and starts execution of the next program statement which is just next to the loop's block.

This command is useful, when there is no proper conditions known from before hand, that when the loop is to be terminated.

Similar questions