Friday, October 26, 2018

Uri 1052 solution in C | Month

/*Before seeing the code solution make sure that you have tried enough. Don’t copy- paste the whole code. Find out the logic. If you face any trouble, just inform me in comment.*/

#include<stdio.h>
main()
{
    int n;
    scanf("%d",&n);
    if(n==1)
    {
        printf("January\n");
    }
      else if(n==2)
    {
        printf("February\n");
    }
     else if(n==3)
    {
        printf("March\n");
    }
     else if(n==4)
    {
        printf("April\n");
    }
     else if(n==5)
    {
        printf("May\n");
    }
     else if(n==6)
    {
        printf("June\n");
    }
     else if(n==7)
    {
        printf("July\n");
    }
     else if(n==8)
    {
        printf("August\n");
    }
     else if(n==9)
    {
        printf("September\n");
    }
     else if(n==10)
    {
        printf("October\n");
    }
     else if(n==11)
    {
        printf("November\n");
    }
     else if(n==12)
    {
        printf("December\n");
    }
    return 0;
}

 //Happy_Coding

No comments:

Post a Comment