The problem states:
Create a drink machine simulator class. The class should use a structure that has:
Drink name
Drink price
# of drinks in the machine
The class should have an array of five of these structures.
The only thing that differs of the five types is the names and one of them costs $1 instead of $0.75.
Wondering if there is a cleaner way to initialize the structures than this.