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?
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?
Comment