When declaring variables (Ex. Ice cream) and you want the user to input 0 for Vanilla, 1 for Chocolate and 2 for Strawberry, do you declare [int icecream], [int vanilla], [int chocolate], and [int strawberry]? Or just [int icecream]?
In my assignment the teacher tells us to use [const int vanilla = 0] since there are going to be if/else statements such as
if (icecream == chocolate)
<blah, blah, blah>
Hope that makes sense, its hard to explain what I'm getting at...