The pseudocode of a program is used as a prototype of the program
How to write the pseudocode
The pseudocode of the program is as follows:
- Counter = 1
- Input num
- Min = num
- Max = num
- // Input remaining 4 numbers
- do {
- Counter = Counter + 1
- Input num
- If (num < Min) { Min = num }
- if (num > Max) {Max = num}
- }
- while (counter < 5)
- Print Min, Max
- End
Read more about pseudocode at:
https://brainly.com/question/24735155