User Profile
Collapse
-
I am trying to do a conversion from Base10 to Base2. So dividing by 2 repeatedly with the mod giving you the answer in reverse order. So trying to print out in correct order. -
How to write loop (ie for) output: loop4, loop3, loop2, loop1.
In a for, while or do loop statement the outputs from left to right is the normal way to have it processed such as
loop1 loop2 loop3 loop4 loop5 ...
Without doing an array I would like to have a loop write the statements in this order
... loop5 loop4 loop3 loop2 loop1
So how do I do this?
No activity results to display
Show More
Leave a comment: