Here's a simple pseudo code to find the highest of ten numbers entered by the user:
<code>initialize maxNumber to -infinityfor i from 1 to 10 do read number if number > maxNumber then maxNumber = number end for print maxNumber
</code>
This code initializes a variable to hold the maximum value, iterates through ten user inputs, and updates the maximum value whenever a larger number is found. Finally, it outputs the highest number.
Copyright © 2026 eLLeNow.com All Rights Reserved.