Kid's Shoes Inventory

You are the owner of a children's shoe store. You want to be able to tell how many shoes you have in the back using a program at the cash register. At the cash register you will be able to add to the inventory, take shoes out of the inventory, find shoes in the inventory and print out the entire inventory.

Your shoe store will have brown, black and tan shoes. All of which have the sizes 0-8. This means that you will have 3 arrays of integers (brown, black and tan). Each spot in the array will be a shoe size.

Size: 	0 	1 	2 	3 	4 	5 	6 	7 	8 
Brown: 1 	4 	5 	6 	7 	2 	1 	2 	8 
Black: 4 	5 	6 	1 	8 	3 	0 	0 	0 
Tan: 	2 	2 	3 	4 	7 	82 	4 	7 	5 

There are 4 brown shoes of size 1 for example.

Marking

The output of your program will look like this:

KID'S SHOES MAIN MENU
   (a) Add a shoe
   (r) Remove a shoe
   (f) Find a shoe
   (p) Print all shoes
   (q) Quit
   Which would you like? >> p
   Size: 	0 	1 	2 	3 	4 	5 	6 	7 	8 
   Brown: 	1 	4 	5 	6 	7 	2 	1 	2 	8 
   Black: 	4 	5 	6 	1 	8 	3 	0 	0 	0 
   Tan: 	2 	2 	3 	4 	7 	82 	4 	7 	5 
   KID'S SHOES MAIN MENU
   (a) Add a shoe
   (r) Remove a shoe
   (f) Find a shoe
   (p) Print all shoes
   (q) Quit
   Which would you like? >> a
   Enter colour (brown/black/tan) >> tan
   Enter the size (0-8) >> 1
   Shoe added.
   KID'S SHOES MAIN MENU
   (a) Add a shoe
   (r) Remove a shoe
   (f) Find a shoe
   (p) Print all shoes
   (q) Quit
   Which would you like? >> r
   Enter colour (brown/black/tan) >> brown
   Enter the size (0-8) >> 4
   Shoe removed.
   KID'S SHOES MAIN MENU
   (a) Add a shoe
   (r) Remove a shoe
   (f) Find a shoe
   (p) Print all shoes
   (q) Quit
   Which would you like? >> f
   Enter colour (brown/black/tan) >> black
   Enter the size (0-8) >> 1
   There are 5 of that shoe in stock.
   KID'S SHOES MAIN MENU
   (a) Add a shoe
   (r) Remove a shoe
   (f) Find a shoe
   (p) Print all shoes
   (q) Quit
   Which would you like? >> p
   Size: 	0 	1 	2 	3 	4 	5 	6 	7 	8 
   Brown: 	1 	4 	5 	6 	6 	2 	1 	2 	8 
   Black: 	4 	5 	6 	1 	8 	3 	0 	0 	0 
   Tan: 	2 	3 	3 	4 	7 	82 	4 	7 	5 
   KID'S SHOES MAIN MENU
   (a) Add a shoe
   (r) Remove a shoe
   (f) Find a shoe
   (p) Print all shoes
   (q) Quit
   Which would you like? >> q
   Goodbye!