Programming
4, 6, 2, 17, 3, 0, 5, 8,19
Show the sequences of numbers for each step of using BubbleSort to sort the numbers in decreasing order
Convert the following Loop into the four other possible loop formats.
Dim i as Integer = 0
Do While (i<5)
sum += i*i
i=i+1
.
.