-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwelth_cpp_file.cpp
53 lines (49 loc) · 1.33 KB
/
twelth_cpp_file.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <iostream>
int main()
{
int month;
std::cout<<"Enter a number between (1-12): ";
std::cin>>month;
switch (month)
{
case 1:
std::cout<<"This month is january";
break;
case 2:
std::cout<<"This month is february";
break;
case 3:
std::cout<<"This month is march";
break;
case 4:
std::cout<<"This month is april ";
break;
case 5:
std::cout<<"This month is may";
break;
case 6:
std::cout<<"This month is june";
break;
case 7:
std::cout<<"This month is july";
break;
case 8:
std::cout<<"This month is august";
break;
case 9:
std::cout<<"This month is september";
break;
case 10:
std::cout<<"This month is october";
break;
case 11:
std::cout<<"This month is november";
break;
case 12:
std::cout<<"This month is december";
break;
default:
std::cout<<"Please enter a month between (1-12)";
}
return 0;
}