streetfighter 2
New Member
- Joined
- Jul 26, 2010
- Messages
- 1,655 (0.30/day)
- Location
- Philly
That isn't how you declare a while loop.
That's a for loop declaration.
It should be:
It's a very common mistake, don't feel bad about it.
That's a for loop declaration.
It should be:
Code:
[B]for[/B] (int i = 0; i < 25; i++){
It's a very common mistake, don't feel bad about it.
Last edited: