#include <iostream> using namespace std; int main() { int month; cout << "Enter the number of month in which you are born : " << endl; cin >> month; switch (month) { case 1: cout << "January is the month"; break; case 2: cout << "February is the month"; break; case 3: cout << "March is the month"; break; case 4: cout << "April is the month"; break; case 5: cout << "May is the month"; break; case 6: cout << "June is the month"; break; case 7: cout << "July is the month"; break; case 8: cout << "August is the month"; break; case 9: cout << "September is the month"; break; case 10: cout << "October is the month"; break; case 11: cout << "November is the month"; break; case 12: cout << "December is the month"; break; default: cout << "Error, Enter the correct value "; } return 0; }