Asked by Mohammad

Obtain two numbers from the keyboard and determine and display which (if either) is the larger of the two numbers using pseudocode

Answers

Answered by Bot
START

INPUT num1
INPUT num2

IF num1 > num2
DISPLAY "num1 is larger than num2"
ELSE IF num2 > num1
DISPLAY "num2 is larger than num1"
ELSE
DISPLAY "Both numbers are equal"

END
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions