Im trying to make a switch statement, where the user is asked for a letter. Depending on the input. The user will get the color code number for the electronic color code chart. If the color is not in the electronic color code chart, the output will be "unknown color". I am having issues when the user inputs "b". How do i get the switch statement to output only brown, blue, or black. I can not use any if, else statements. */
#include <stdlib.h> // Directive for Pause
#include <iostream> // Directive for Input / Output
using namespace std;
int main ()
{
char first_letter;
char second_letter;
char third_letter ;
char electronic_color_code;
cout << "Electronic Color Code" << endl << endl;
cout << "To find out the digit of a particular color code," << endl <<
"enter a letter: " ;
cin >> electronic_color_code;
cout << endl;
switch (electronic_color_code)
{
case 'r':
case 'R':
cout << "Red stands for digit 2.";
break;
case 'o':
case 'O':
cout << "Orange stands for digit 3.";
break;
case 'y':
case 'Y':
cout << "Yellow stands for digit 4.";
break;
case 'v':
case 'V':
cout << "Violet stands for digit 7.";
break;
case 'w':
case 'W':
cout << "White stands for digit 9.";
break;
case 'b':
case 'B':
cout << "Enter a second letter: ";
cin >> second_letter;
cout << endl;
case 'brows':
case 'BROWS':
cout << "Brown stands for digit 1.";
cout << endl;
break;
case 'lue':
case 'LUE':
cout << "Enter a third letter: ";
cin >> third_letter;
cout << endl;
case 'a':
case 'A':
cout << "Black stands for digit 0.";
cout << endl;
case 'u':
case 'U':
cout << "Blue stands for digit 6.";
break;
case 'g':
case 'G':
cout << "Enter the second and third letter" << endl;
cin >> second_letter >> third_letter ;
case 'rayd':
case 'RAYD':
cout << "Grey stands for the digit 8.";
case 0:
case 'reen':
case 'REEN':
cout << "Green stands for the digit 5." ;
break;
default:
cout << "Unknown Color";
}
cout << endl << endl;
system ("Pause");
return 0;
}


'reen'and the like are multicharacter literals that have an implementation-defined value. – chris Feb 4 at 3:14std::hash) on the string you get, or actually put whole other switches in the cases where you need more letters. – chris Feb 4 at 3:17breakstatement. – WhozCraig Feb 4 at 3:22iostreamwill never return a multicharacter literal value. – Potatoswatter Feb 4 at 3:43