Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 Putting Numbers in order...
Index -> Programming, Turing -> Turing Help
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
l0tt0




PostPosted: 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
Sponsor
sponsor
Tony




PostPosted: Sat Nov 15, 2003 5:45 pm   Post subject: (No subject)

simpliest way to understand is ofcourse the bubble sort Wink You'll find the code for it if you use the search function.
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
nis




PostPosted: 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




PostPosted: Sun Nov 16, 2003 11:43 am   Post subject: (No subject)

thnx every1
morgoth




PostPosted: 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!
Display posts from previous:   
   Index -> Programming, Turing -> Turing Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 5 Posts ]
Jump to:   


Style:  
Search: