Question: Below you will see psuedocode, please debug the code (find the errors) and make the correct changes to psuedocode. // This application reads 10 numbers

Below you will see psuedocode, please debug the code (find the errors) and make the correct changes to psuedocode.

// This application reads 10 numbers and sorts them, // then displays the three highest numbers

start Declarations num SIZE = 10 num number num numbers[SIZE] num count = 0 getReady() while count <= SIZE detailLoop() endwhile finish() stop

getReady() output "Enter a number " input number return

detailLoop() numbers[count] = number output "Enter a number " input number return

finish() sort() output "The highest three are ", numbers[1], numbers[2], numbers[3] return

sort() num x = 0 num y = 0 num COMPS = count - 1 while y < COMPS while x < COMPS if numbers[x] < numbers[x] then swap() endif x = x + 1 endwhile y = y + 1 endwhile return

swap() num temp temp = numbers[x + 1] numbers[x + 1] = numbers[x] numbers[x] = temp return

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!