This can be done in S.I.C.K. but I dare the authors of Qb64pe to do this:
Displays 5 rows of 10 skipping every x
Displays 5 rows of 10 skipping every x
Code: (Select All)
10 for x=1 to 10 step 2
20 for y=1 to 10
30 select case y
40 case isnt=x
50 print y;
60 end select
70 next
80 print
90 next