consider a for loop like that:
for(i=0;i<=Bound;i++)
In this loop i would like to do an "if" test which if the test succeed i would like to go to the next iteration and if not i do another thing. For example:
if(i>Max||i<Min)
//at this moment if the test succeed go to the next iteration;
else
//call another method.
So could i use exit() method or how could i do that?
thanks in advance
jayjay60
for(i=0;i<=Bound;i++)
In this loop i would like to do an "if" test which if the test succeed i would like to go to the next iteration and if not i do another thing. For example:
if(i>Max||i<Min)
//at this moment if the test succeed go to the next iteration;
else
//call another method.
So could i use exit() method or how could i do that?
thanks in advance
jayjay60