Take off every Zig!
May I suggest you write the loop as while (count <= 100) ...? This way, you have one less magic number (101) and it is blindingly obvious you are looping to 100 inclusive.
while (count <= 100) ...
101
100
Cheers!
That's a fair improvement, I've updated it.
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
May I suggest you write the loop as
while (count <= 100) ...
? This way, you have one less magic number (101
) and it is blindingly obvious you are looping to100
inclusive.Cheers!
That's a fair improvement, I've updated it.