The shipping clerk at the Dewey Flapper company is faced with the following problem: Dewey Flappers are very delicate and must be shipped in special containers. These containers come in four sizes, huge, large, medium, and small, which can hold 50, 20, 5 and 1 Dewey Flappers, respectively. Write a program that reads (from the keyboard) the number of Flappers to be shipped and prints the number of huge, large, medium, and small containers needed to send the shipment in the minimum number of containers and whith the minimum amount of wasted space. Use the % operator in your program. Use named constants for the number of Flappers each type of container can hold. The output should be similar to the following:
Container
Number
=======
======
Huge
21
Large
2
Medium
1
Small
3
Execute the program for 3, 18, 48, 78, and 10,598 Flappers. Hand in a listing of your program together with output redirected to a file.
Pay attention to appropriate comments, meaningful variable names and readable format.
Container
Number
=======
======
Huge
21
Large
2
Medium
1
Small
3
Execute the program for 3, 18, 48, 78, and 10,598 Flappers. Hand in a listing of your program together with output redirected to a file.
Pay attention to appropriate comments, meaningful variable names and readable format.