Posted: 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
Sponsor Sponsor
Tony
Posted: Sat Nov 15, 2003 5:45 pm Post subject: (No subject)
simpliest way to understand is ofcourse the bubble sort You'll find the code for it if you use the search function.
Posted: Sun Nov 16, 2003 3:40 am Post subject: (No 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
l0tt0
Posted: Sun Nov 16, 2003 11:43 am Post subject: (No subject)
thnx every1
morgoth
Posted: Sun Nov 23, 2003 9:44 am Post subject: (No subject)
damn.. I could have solved this one too, I had to bubble sort an array LOL
-CHEERS!