Jump to content

cbox


Recommended Posts

Posted (edited)
Should just be called a for loop not "for next". While your at it why not cover do while (they can be helpful) and foreach. Edited by dschu012
Posted (edited)
While is in there, look further down.

I mean a "do while" loop.

 

int i = 0;

do
{
i++;
}while(i < 10);

 

That example really doesn't prove to be helpful. But it can be very helpful whenever you need to do something atleast once, then repeat the action based on the results.

Edited by dschu012

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...