Computer Science Canada

Putting Numbers in order...

Author:  l0tt0 [ Sat Nov 15, 2003 5:40 pm ]
Post subject:  Putting Numbers in order...

Is there a way to put numbers in order? I had to make a lott649 style game and was wondering if theres a way to put the random and user guesses numbers in order from least to greatest...thnx in advance

Author:  Tony [ Sat Nov 15, 2003 5:45 pm ]
Post subject: 

simpliest way to understand is ofcourse the bubble sort Wink You'll find the code for it if you use the search function.

Author:  nis [ Sun Nov 16, 2003 3:40 am ]
Post subject: 

The code for bubble sort:

code:

var NumberOfEntries : int := 100
var num : array 1 .. 100 of int
var temp : int
for i : 1 .. 100
     num(i) := Rand.Int(1,1000)
end for

for decreasing i :  NumberOfEntries - 1 .. 1
     for j : 1 .. i
           if num(j) > num(j + 1) then
                 temp := num(j)
                 num(j) := num(j+1)
                 num(j+ 1) := temp
           end if
     end for
end for

for i : 1 .. 100
    put num (i) : 5 ..
end for

Author:  l0tt0 [ Sun Nov 16, 2003 11:43 am ]
Post subject: 

thnx every1

Author:  morgoth [ Sun Nov 23, 2003 9:44 am ]
Post subject: 

damn.. I could have solved this one too, I had to bubble sort an array LOL
-CHEERS!


: