Step 2: Pseudocode
Using the pseudocode below, write the code that will meet the requirements:
Display description of program
Prompt the user for the first number
Prompt the user for the second number
If first number equals second number
Display the two numbers are equal
Else
If first number is greater than second number
Assign second number to smallest
Else
Assign first number to smallest
End-If
Display smallest number
End-If
Step 3: Create a New Project
Create a new project and name it LAB2A. Write your code using the processing logic in Part A,
Step 2.
Step 4: Save Program