View Single Post
Old 12-02-2004, 11:26 PM   #3 (permalink)
U-Toast
 
Monster Techie

Join Date: Aug 2004

Posts: 1,622

U-Toast

Default

take this for example

int i;
for (i=0; i<15; i++)
{
system.out.println(i);
system.out.println();
}
this would print out
0
1
2
...
15
the i= is wat i starts at. The i< is wat it finishes, and I++ mean it add 1 each time.
and itl repeat the loop till it reaches the number that is befor <
__________________
My current specs:
i7 920
Biostar TPower x58
3x2GB g.skill
XFI GTX260 Black Edition
640 WD Caviar Black
Vista Home Premium x64
U-Toast is offline