24.07.2011, 23:03
If i have this Loop:
a is equal to 1 and it will be skiped.
That code can be equal to:
Or i'm a bit confused?
pawn Код:
for (new a = 0; a < 3; a++)
{
if (a == 1) continue;
printf("a = %d", a);
}
That code can be equal to:
pawn Код:
for (new a = 0; a < 3; a++)
{
if (a == 1) return 0;
printf("a = %d", a);
}