First page
Back
Continue
Last page
Graphics
While vs For
For Loop
for ( int i = 0; i < 10; i++)
While Loop
int i(0);
while(i<10)
{
....
i++;
}