Question: assembly language with psuedo code as well please Write a program that prints the larger of three numbers. Example run #1 Enter three numbers 1
Write a program that prints the larger of three numbers. Example run #1 Enter three numbers 1 3 2 Larger = 3 Solve the problem with pseudocode first. Output: Larger num Input: num1, num2 and num3 Processing: determine which is larger Therefore, the pseudocode would be: i ; Start ; Print "Enter three numbers" ; Input numi ; Input num2 ; Input num3 ; IF numl > num2 AND numl > num3 Print numi ; ELSE IF num2 > num3 Print num2 ELSE Print num3 ENDIF ; ENDIF ; Stop ; i ; Use this solution to solve the
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
