15. switch() can only evaluate integral data types (ie int a = 1, char b = 'c', etc). A little caveat with switch() however, once it has found the case that matches the variable being evaluated it will continue to execute all of the cases that follow, unless you code 'break;' after the case. So a go...