I'm stuck, I'm not really sure how to use a switch statement to switch "DESKTOP" to "desktop" for example.
enum ComputerType { DESKTOP, LAPTOP, TABLET, HANDHELD };
// Prints a computer type as a lower case string.
// Use switch statement to implement this function.
// params: (in)
void PrintComputerType( ComputerType comp ) const
{
switch ( comp )
{
}
}