-
Lenguaje
C
-
Descripción
Pide el número del mes y muestra su nombre.
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int mes;
printf ("Ingresa el valor de mes: ");
scanf ("%d", &mes);
(void) getchar ();
if(mes==1)
printf ("Enero\n");
if(mes==2)
printf ("Febrero\n");
if(mes==3)
printf ("Marzo\n");
if(mes==4)
printf ("Abril\n");
if(mes==5)
printf ("Mayo\n");
if(mes==6)
printf ("Junio\n");
if(mes==7)
printf ("Julio\n");
if(mes==8)
printf ("Agosto\n");
if(mes==9)
printf ("Septiembre\n");
if(mes==10)
printf ("Octubre\n");
if(mes==11)
printf ("Noviembre\n");
if(mes==12)
printf ("Diciembre\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int mes;
printf ("Ingresa el valor de mes: ");
scanf ("%d", &mes);
(void) getchar ();
if(mes==1)
printf ("Enero\n");
if(mes==2)
printf ("Febrero\n");
if(mes==3)
printf ("Marzo\n");
if(mes==4)
printf ("Abril\n");
if(mes==5)
printf ("Mayo\n");
if(mes==6)
printf ("Junio\n");
if(mes==7)
printf ("Julio\n");
if(mes==8)
printf ("Agosto\n");
if(mes==9)
printf ("Septiembre\n");
if(mes==10)
printf ("Octubre\n");
if(mes==11)
printf ("Noviembre\n");
if(mes==12)
printf ("Diciembre\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}