Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
Hi All.
I would like to create loop to skip each fourth number and multiply result by 7. What I mean. If a regular sequence is:
0, 1, 2, 3 ,4 ,5, 6, 7, 8, 9, 10, 11, 12 and so on.
I would like to get sequence:
0, 1, 2 ,4, 5, 6, 8, 9, 10, 12, 13, 14 and so on. In that sequence the numbers 3, 7, 11 are skipped.
And multiply number from sequence by 7.
Thanks.
Solved! Go to Solution.
try the modulo-operator:
if (iNumber % 4 == 3) { /* then skip */ } else { /* print */ }
View solution in original post
Views
Likes
Replies