Design a flowchart or pseudocode for a program that accepts two
numbers from a user and displays one of the following messages: First
is larger, second is larger, and numbers are equal.

See Answers (1)

Accepted Answer

Using the knowledge in computational language in python it is possible to write the code that design a flowchart or pseudocode for a program that accepts two numbers from a user and displays Writting the code:firstNum=int(input("enter the firstNum "))secondNum=int(input("enter the secondNum "))First="First is larger"Second="Second is large"Equal="Numbers are equl"if firstNum>secondNum:print(First)elif(secondNum>firstNum):print(Second)else:print(Equal)See more about python at brainly.com/question/18502436#SPJ1

Related Question in Computers and Technology