Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

loop step

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    loop step

    I would like to change the step in a "for" loop...
    when you use "x++", the step is 1. How can I modify it ?

    ex:
    for (i=1;i<10; x goes with a step of 2) ?

    #2
    x=x+2;

    ?

    Mike

    Comment


      #3
      for (i=1;i<20;i=i+2)
      Print("i="+i);

      Comment


        #4
        also,

        i += 2 is equivalent to i = i + 2
        i -= 2
        i *= 2

        etc..

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by kinfxhk, 07-14-2026, 09:39 AM
        0 responses
        127 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 10:18 AM
        0 responses
        105 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 09:50 AM
        0 responses
        85 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 07:21 AM
        0 responses
        105 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-11-2026, 02:11 AM
        0 responses
        86 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X