For intSub=1 to 4
For intInnerSub=1 to 4
intSubNext = intInnerSub + 1
If (strFirstName(intInnerSub) > str First name(intSubNext) then
strSwap = strFirstName(intInnerSub)
strFirstName(intInnerSub) = strFirstName (intSubNext)
strFirstName(intSubNext) = strSwap
End If
Next intInnerSub
Next intSub
What does this code mean as a whole and what does each line of code perform? I cannot figure this out. By the way strFirstName is an array with five elements.
Thank you so much
2007-03-27
10:53:43
·
2 answers
·
asked by
ostyman09
2
in
Computers & Internet
➔ Programming & Design