-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercicio10.c
57 lines (49 loc) · 1.11 KB
/
exercicio10.c
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
54
55
56
57
//Bibliotecas
#include <stdio.h>
#include <locale.h>
int main()
{
// Regionalização (Desbuga palavras com acento)
setlocale(LC_ALL, "Portuguese_Brazil");
// Declaração das Variáveis
char sexo, nome[200];
int idade;
printf("Informe o nome: ");
gets(nome);
printf("Informe a idade: ");
scanf("%d", &idade);
printf("Informe o sexo sendo, [M] Masculino [F] Feminino: ");
scanf(" %c", &sexo);
if (sexo == 'M' || sexo == 'm')
{
if (idade > 0 && idade < 11)
{
printf("\nMenino: %s", nome);
}
else if (idade >= 11 && idade < 20)
{
printf("\nRapaz: %s", nome);
}
else
{
printf("\nAdulto: %s", nome);
}
}
if (sexo == 'F' || sexo == 'f')
{
if (idade > 0 && idade < 11)
{
printf("\nMenina: %s", nome);
}
else if (idade >= 11 && idade < 20)
{
printf("\nMoca: %s", nome);
}
else
{
printf("\nAdulta: %s", nome);
}
}
printf("\n\n");
return 0;
}