MitchBu Well-Known Member Licensed User Longtime User Dec 29, 2019 #1 Is there any way to create a for next structure that decrements, instead of incrementing ? Something like B4X: Dim i As Int For i = 10 To 1 Log(i) Next
Is there any way to create a for next structure that decrements, instead of incrementing ? Something like B4X: Dim i As Int For i = 10 To 1 Log(i) Next
JordiCP Expert Licensed User Longtime User Dec 29, 2019 #2 B4X: Dim i As Int For i = 10 To 1 step -1 Log(i) Next Upvote 0
MitchBu Well-Known Member Licensed User Longtime User Dec 29, 2019 #3 Of course! Thank you JordiCP Upvote 0