Code: Select all
for y = 0 to 480
for x = 0 to 640
..code...
next
next
for i = 0 to 100
.. code...
next
but now when i study the web i found even more examples where people using i and j instead x and y... are i and j something like a stanard as used in following example? (i know, i could use any variable)
for j = 0 to 480 ; seems j stands for y in java/c/c++ !?
for i = 0 to 640 ; seems i stands for x in jave/c/c++ !?
..code...
next
next



