Homework 06

Due 11/5/2017 11/7/2017 11:55pm

Sorting Laundry

 

Objective: 

Write a program that will sort a basket of clothes into their proper drawers.  If you were not aware you should sort clothes by their type in this order:

 

Write a class called Clothing in a file called "Clothing.java"

 

Next write a class called Dresser in a file called "Dresser.java"

 

Finally write a class called DresserFrontEnd in a file called "DresserFrontEnd.java"

 

Example Output:

 

Welcome to the dresser!

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

1

Enter the type

It may be undergarment, socks, stockings, top, bottom, or cape

top

Enter a color

It may be brown, pink, orange, green, blue, purple, or grey

red

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

1

Enter the type

It may be undergarment, socks, stockings, top, bottom, or cape

cape

Enter a color

It may be brown, pink, orange, green, blue, purple, or grey

purple

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

1

Enter the type

It may be undergarment, socks, stockings, top, bottom, or cape

socks

Enter a color

It may be brown, pink, orange, green, blue, purple, or grey

grey

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

1

Enter the type

It may be undergarment, socks, stockings, top, bottom, or cape

cape

Enter a color

It may be brown, pink, orange, green, blue, purple, or grey

blue

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

1

Enter the type

It may be undergarment, socks, stockings, top, bottom, or cape

undergarment

Enter a color

It may be brown, pink, orange, green, blue, purple, or grey

pink

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

3

Drawer 0

undergarment pink

 

Drawer 1

socks grey

 

Drawer 2

top red

 

Drawer 3

 

Drawer 4

cape purple

cape blue

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

2

Enter the type

It may be undergarment, socks, stockings, top, bottom, or cape

socks

Enter a color

It may be brown, pink, orange, green, blue, purple, or grey

grey

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

3

Drawer 0

undergarment pink

 

Drawer 1

 

Drawer 2

top red

 

Drawer 3

 

Drawer 4

cape purple

cape blue

 

Enter 1: to add an item

Enter 2: to remove an item

Enter 3: to print out the dresser contents

Enter 9: to quit

9

Goodbye

 

 

Submit the files to the dropbox