-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathun4_problema8_informacoes_funcionario.c
73 lines (62 loc) · 1.91 KB
/
un4_problema8_informacoes_funcionario.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#define nFUN 20 // número de funcionários para cadastrar
struct funcionarios {
int matricula;
char nome[50];
char setor[30];
float salario;
};
int main() {
setlocale(LC_ALL, "Portuguese");
struct funcionarios dados [nFUN];
int busca, i, acha;
char op;
for (i=0;i<nFUN;i++){
printf("Digite a matr�cula do funcion�rio: ");
fflush(stdin);
scanf("%d", &dados[i].matricula);
printf("Digite o nome: ");
fflush(stdin);
gets(dados[i].nome);
printf("Digite o setor: ");
fflush(stdin);
gets(dados[i].setor);
printf("Digite o sal�rio: ");
fflush(stdin);
scanf("%f", &dados[i].salario);
}
do {
printf("Deseja realizar busca (S/N): ");
fflush(stdin);
scanf("%c", &op);
} while ((op != 'S') && (op != 's') && (op != 'n') && (op != 'N'));
while ((op == 's') || (op == 'S')){
printf("Informe a matr�cula que deseja buscar: ");
fflush(stdin);
scanf("%d", &busca);
i = 0;
acha = 0;
while ((i<nFUN) && (acha==0)) {
if (dados[i].matricula == busca) {
acha = 1;
} else {
i++;
}
if (acha == 1) {
printf("O setor �: %s\n", dados[i].setor);
printf("O sal�rio �: %.2f\n", dados[i].salario);
} else {
printf("Matr�cula n�o cadastrada!\n");
}
do {
printf("Deseja realizar busca (S/N)");
fflush(stdin);
scanf("%c", &op);
} while ((op != 'S') && (op != 's') && (op != 'N') && (op != 'n'));
}
}
return (0);
}