This C++ program takes an input of a month's number and uses a switch statement to output the corresponding month's name. Here's a breakdown of the program's logic:
Overall, this program is a simple example of how to use a switch statement in C++ to handle multiple cases. However, it could be improved by adding input validation to check that the entered number is within the correct range of 1 to 12.
#include<iostream> using namespace std; int main() { int month; cout<<"\nEnter the Month's number :"; cin>>month; switch (month) { case 1: cout<<"January"; break; case 2: cout<<"Febrauary"; break; case 3: cout<<"March"; break; case 4: cout<<"April"; break; case 5: cout<<"May"; break; case 6: cout<<"June"; break; case 7: cout<<"July"; break; case 8: cout<<"August"; break; case 9: cout<<"September"; break; case 10: cout<<"October"; break; case 11: cout<<"November"; break; case 12: cout<<"December"; break; } return 0; }To download raw file Click Here
Enter the Month's number :4 April
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions