diff --git a/client-a.txt b/client-a.txt index 09f6cf6..1958035 100644 --- a/client-a.txt +++ b/client-a.txt @@ -1,4 +1,18 @@ # Client Task A # # Add your pseudocode to this file below this line: # # ------------------------------------------------- # +1. Create number scale valued from 1-10 + prompt user to select a number between value 1-10 + alert user that they have three chances to select the correct number +2. User selects number from the above scale in Step 1 + computer randomly generates a number from the above scale +3. Check if the user selected number is the same as the randomly generated number + If the number is correct + print "You win the grand prize" and exit game + else print "please try again" +4. Prompt user to select a new number between 1-10 + repeat step 3 until user has made 3 different guesses + if user does not select the correct number + print "Sorry, game is over. Goodbye" + prompt user to choose option of "Play Again" or "Exit Game" diff --git a/client-b.txt b/client-b.txt index 991004f..f0aa8d9 100644 --- a/client-b.txt +++ b/client-b.txt @@ -2,3 +2,25 @@ # Add your pseudocode to this file below this line: # # ------------------------------------------------- # +Application has a gps map of the warehouse store 30x30 measured in ft. + - the map supports the directions listed as: north, south, east, west + - the map supports directions to location desired by walking only + +1. User prompts application to display map of warehouse store + - user enables current location of device + - this location is labled as "starting location" + +2. User selects desired location of store on the application + - this location is labeled as "ending location" + +3. Application displays directions from starting location to ending location + - directions are listed in feet to ending location + - directions are specific to only as following: north, south, east, west + +4. User follows listed directions to target location + - application updates current location in real time relative to ending location selected in Step 2 + +5. Loop directions to ending location + - when user reaches the ending location + print "You have arrived" and exit user prompt in Step 1 + diff --git a/client-c.txt b/client-c.txt index d9a1860..07d4151 100644 --- a/client-c.txt +++ b/client-c.txt @@ -2,3 +2,16 @@ # Add your pseudocode to this file below this line: # # ------------------------------------------------- # +1. Create number scale for the program to scan values from 1-50 + - scanner prints numbers in increments of 2 up to the maximum value of 50 + - value of 50 reached is equal to 1 case + +2. Loop scanner to print +-2 until maximum value of 50 is reached + - when scanner is given the value of 50 + print "One Case Filled" + count each case filled by increments of 1 + +3. Repeat Step 2 + - if scanner is unable to reach the maximum value of 50 + - exit scanning Loop in Step 2 + print "Out of packages to scan"