// Pseudocode PLD Chapter 8 #1 pg. 366 // Start // Declarations // num SIZE = 10 // num NUMBERS[SIZE] // num i // num j // num temp // for i = 0 to SIZE - 1 // output "Please enter a number: " // input NUMBERS[i] // endfor // for i = 0 to SIZE - 2 // for j = 0 to SIZE - 2 // if (NUMBERS[j] < NUMBERS[j+1]) // temp = NUMBERS[j] // NUMBERS[j] = NUMBERS[j+1] // NUMBERS[j+1] = temp // endif // endfor // endfor // output "Sorted List" // output "===========" // for i = 0 to SIZE - 1 // output "Number ", i + 1, ": ", NUMBERS[i] // endfor // Stop