diff --git a/client-a.md b/client-a.md new file mode 100644 index 0000000..8e00748 --- /dev/null +++ b/client-a.md @@ -0,0 +1,22 @@ +# client-a.md + +## Guess the number + +- Variable random_num = randint(1,10) +- Program chooses the random number between 1 and 10 +- Store the random number in a variable named random_num +### for loop w/ range(3) +- Enter "Enter guess number 1:" +- Guess number 1 into variable guess_1 +- Compare guess_1 = random_num + - If true, print "Congratulations, you guessed the number"s + - If false, Enter "Enter guess number 2:" +- Guess number 2 into variable guess_2 +- Compare guess_2 = random_num + - If true, print "Congratulations, you guessed the number"s + - If false, Enter "Enter guess number 3:" +- Guess number 3 into variable guess_2 +- Compare guess_3 = random_num + - If true, print "Congratulations, you guessed the number" + - If false, print "You are out of guesses" +- End loop diff --git a/client-b.md b/client-b.md new file mode 100644 index 0000000..dcae014 --- /dev/null +++ b/client-b.md @@ -0,0 +1,25 @@ +# client-b.md + +## A simple warehouse store map app + +### Create a tile map of the of the warehouse store. +- Interface will use the **aisles, shelves, and storage bins** to tile map the store. +- Aisles, shelves, and storage bins will be oriented north/south , or east/west. +- ID locations of the major material categories, such as 2X4s, plywood, electrical, etc., and the entrance to the store. +- Add tile mapping location descriptors for each of the material IDs. +- Aisles will be labeled. + +### Create a graphical user interface to show the way to get from the main entrance to any materials location, and to go from any material location to another material location. +- Interface will show the tile map of the store w/ the selected material locations labeled. +- Interface will allow the customer to select a 'to' and 'from' material/main entrance locations and then press a 'go' button. +- When the 'go' button is pressed a walking map will be generated showing the path to the selected material location using a dashed line going thru the needed aisleways. +- The main entrance location wil[ be defaulted in as the 'from' input. +- Dropdown lists will allow the selection of the locations. + +### Other features +- There will be a 'clear locations' button for the to/from inputs. +- Consider a 'reset' button to clear inputs and stop any background processes so the customer can truly start over. + +### Error(s) to be considered and corrected, +- Only one location input is selected. +- After a selected amount of time and the 'gp' button has not been pressed. diff --git a/client-c.md b/client-c.md new file mode 100644 index 0000000..700feb6 --- /dev/null +++ b/client-c.md @@ -0,0 +1,9 @@ +# client-c.md + +## Loop to count from 2 to 50 by 2's + +- For loop w/ range(2, 50, 2) +- Initialize counter: count==2 +- When count==50 +- Print "Stop scanning, 50 packages have been sorted. +- Reset counter, count==2 \ No newline at end of file