Question: I need to know how to input the following code into the complier for C++ code. It is for PLD chapter 8 question 1 //
I need to know how to input the following code into the complier for C++ code. It is for PLD chapter 8 question 1
// 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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
