DEVRY CIS 170 Entire CourseDEVRY CIS 170 Entire Course DEVRY CIS 170 Entire Course | Page 2

20 Part B Step 7 : Program Listing and Output 25 Lab Steps Preparation : If you are using the Citrix remote lab , follow the login instructions located in the iLab tab in Course Home . Locate the Visual Studio 2010 icon and launch the application . Lab : Part A : Determine Smallest Number Step 1 : Requirements Write a program that inputs two numbers and determines which of the two numbers is the smallest . If the numbers are equal , display a message that they are equal . Sample output from program : You will be asked to enter two numbers . The smallest value will be displayed or a message if they are the same . Please enter a numeric value : 4 Please enter a numeric value : 7 The smallest value is 4 Press any key to continue . . . AND THEN : Please enter a numeric value : 7 Please enter a numeric value : 4 The smallest value is 4 Press any key to continue . . . 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