C#
To write a program using a stack and a program using a
queue.
Code a class encapsulating a queue of foods using a circular
array. A food has the following attributes: name, the number of
calories per serving and the number of servings per container.
Limit your queue to 20 food items. In addition to writing the
enqueue, dequeue, and peek methods, you will write two more
methods: a method that returns the average calories per serving of
all...