#include #include using namespace std; int main() { int a; cout << "Pls Enter an Integer (from 0 to 9): "; cin>>a; switch (a) { case '0': cout << "Zero"; break; case '1': cout << "One"; break; case '2': cout << "Two"; break; case '3': cout << "Three"; break; case '4': cout << "Four"; break; case '5': cout << "Five"; break; case '6': cout << "Six"; break; case '7': cout << "Seven"; break; case '8': cout << "Eight"; break; case '9': cout << "Nine"; break; default: cout << "Invalid character"; } return 0; }