This is what I developed so far. My real problem is listing the eight highest scores, which i have yet to add. I'm just looking for people to take a look at it and if you see something I can correct or possibly teach me a better way to do it that would be great. Again, I am not looking to have the answer handed to me that's not why I am here, I am looking for any help that is offered so that one day I can return those favors to aspiring programmers like myself.
Start string name num students = 21 num quizScore [students] num x = 1 get name while x < students get quizScore [x] x=x +1 endwhile perform BubbleSort (num quizScore[], num students) DisplayArray (num quizScore[], num students) Stop void BubbleSort (num quizScore[], num students) void DisplayArray(num quizScore[], num students) num x = students – 1 while x > 0 print name, quizScore[x] x = x – 1 endwhile return
Thanks for all of your time!!!! Much appreciated!!!!

New Topic/Question
Reply



MultiQuote



|