From 008aad259fcc52dcdf0918d67f6bb4b44558c4dc Mon Sep 17 00:00:00 2001 From: shroomtoastie <141182377+shroomtoastie@users.noreply.github.com> Date: Sun, 29 Sep 2024 20:35:10 -0400 Subject: [PATCH 1/3] prompt A --- client-a.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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" From e33021881fd71d5c1bd7ebfd5e3f06e0160ea2ba Mon Sep 17 00:00:00 2001 From: shroomtoastie <141182377+shroomtoastie@users.noreply.github.com> Date: Sun, 29 Sep 2024 21:19:15 -0400 Subject: [PATCH 2/3] prompt B --- client-b.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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 + From 810b016871a1f7c45c8bb7cbfca5f416d32a4ed4 Mon Sep 17 00:00:00 2001 From: shroomtoastie <141182377+shroomtoastie@users.noreply.github.com> Date: Sun, 29 Sep 2024 21:57:06 -0400 Subject: [PATCH 3/3] prompt C --- client-c.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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"