-
Linguagem
C
-
Descrição
Nome do mês
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 ("Digite o valor do mes: ");
scanf ("%d", &mes);
(void) getchar ();
if(mes==1)
printf ("Janeiro\n");
if(mes==2)
printf ("Fevereiro\n");
if(mes==3)
printf ("Mar\207o\n");
if(mes==4)
printf ("Abril\n");
if(mes==5)
printf ("Maio\n");
if(mes==6)
printf ("Junho\n");
if(mes==7)
printf ("Julho\n");
if(mes==8)
printf ("Agosto\n");
if(mes==9)
printf ("Setembro\n");
if(mes==10)
printf ("Outubro\n");
if(mes==11)
printf ("Novembro\n");
if(mes==12)
printf ("Dezembro\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int mes;
printf ("Digite o valor do mes: ");
scanf ("%d", &mes);
(void) getchar ();
if(mes==1)
printf ("Janeiro\n");
if(mes==2)
printf ("Fevereiro\n");
if(mes==3)
printf ("Mar\207o\n");
if(mes==4)
printf ("Abril\n");
if(mes==5)
printf ("Maio\n");
if(mes==6)
printf ("Junho\n");
if(mes==7)
printf ("Julho\n");
if(mes==8)
printf ("Agosto\n");
if(mes==9)
printf ("Setembro\n");
if(mes==10)
printf ("Outubro\n");
if(mes==11)
printf ("Novembro\n");
if(mes==12)
printf ("Dezembro\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}