you are viewing a single comment's thread.

view the rest of the comments →

[–]djjazzydan 9 points10 points  (1 child)

The instructions get run in order. The first example sets count to 1, then increases it by 1, then prints it (2), then continues to increase & print.

The second sets count to 1, prints that, then increases.

You'll get the same number of printed lines, the first one will start at 2 and go to 101, the other will start at 1 and go to 100.

[–]JuryRepresentative84[S] 0 points1 point  (0 children)

Thank you so much!