Here is a schema of my code :
while (..)
{
for (...; ...;...)
for(...;...;...)
if ( )
{
...
continue;
}
}
What will do the continue? He will only make the second loop iterate one time, no? I would like it to reach the while, is it possible ?
Thanks!