Created
September 17, 2018 17:14
-
-
Save iamtis/923baae810ad6f2fd05c3aec08a4b6fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switch(i){ | |
case 1: | |
cout << "one" << endl; | |
case 2: | |
cout << "two" << endl; | |
case 3: | |
cout << "three" << endl; | |
case 4: | |
cout << "four" << endl; | |
case 5: | |
cout << "five" << endl; | |
case 6: | |
cout << "six" << endl; | |
case 7: | |
cout << "seven" << endl; | |
case 8: | |
cout << "eight" << endl; | |
case 9: | |
cout << "nine" << endl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment