G
Guest
if I have this array: male(1) male(2) male(3) male(4
male( ) George Mike Charlie Howar
For i = 1 To
For j = 1 To 4 -
If male(j) > male(j + 1) The
temp = male(j
male(j) = male(j + 1)
male(j + 1) = tem
End I
Nex
What will the final status of male be:
male( ) George Mike Charlie Howar
For i = 1 To
For j = 1 To 4 -
If male(j) > male(j + 1) The
temp = male(j
male(j) = male(j + 1)
male(j + 1) = tem
End I
Nex
What will the final status of male be: