/** A class to track the varying fortune of a Hot Chocolate booth. * @see http://www.radford.edu/itec120/2008spring/Homeworks/hw06.html * @author ______________ */ class HotChocoBooth { /** Constructor. * @param _______ The initial amount of cash reserves (in $). * @param _______ How much initial capacity is requested (in liters). */ /** Getter for __________. * @return this HotChocoBooth's __________ (in [what units?]). */ /** Setter for __________. * @param ________ the new __________ for this HotChocoBooth (in [what units?]). */ /** buySupplies: * decides how many liters worth of supplies to buy, updating the * cash reserves accordingly, * @return the number of liters of hot chocolate ready to sell. */ /** doBusiness: * Do business for one day (buying supplies, and then selling hot * chocolate). Update the cash reserves accordingly. * @param _______ The average temperature of the day, in °F * (which determines sales price). */ /** expandCapacity: Add to the capacity of how much hot chocolate we can make. * @param _________ The amount of capacity to add (in liters). */ }