can you use a for loop to reverse a number code example
Example: reverse for loop
for (int i = myArray.Length - 1; i >= 0; i--)
{
// Do something ...
}
for (int i = myArray.Length - 1; i >= 0; i--)
{
// Do something ...
}