Hi I have a homework assignment that requires me to first load an array of 15 numbers with a loop. Afterwards I need to display the array I just loaded with a loop first in the ordered it was loaded then in ascending order. My teacher was sick this week for class and the instructions and examples were very unclear and I am very lost. Im just a beginner so the more details the better I can follow you. Thanks for the help!!
Edit: I understand how to display the array in the order that it was entered. Im jsut having trouble with the loading and the display in order.
I have this to display the array once it gets loaded:
While $x < 14 do
Display $A [$x]
$x++
EndWhile