I'm making a switch statement based off of the amount of numbers entered into a file and stored directly into a vector. How do I reference the case?
switch(?)
{
case '?'
The vector is named nums[]. I wanted the case statement to say "if count == 2, then ..., if count == 3, then ... etc." I felt an "if, else" was just a little too much. Or would that be the best?