Display Month using Switch Case in C++


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:

  • First, the program prompts the user to enter the month's number.
  • The user enters a number between 1 and 12, inclusive.
  • The program uses a switch statement to check which number was entered.
  • Depending on the entered number, the corresponding month's name is outputted using the cout statement.
  • The break statement is used to end each case statement and prevent the program from executing subsequent case statements.
  • Finally, the program returns 0 to indicate successful execution.

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.

Source Code

#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

Output

Enter the Month's number :4
April

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples