-
Notifications
You must be signed in to change notification settings - Fork 23
/
lista_telefonica_hash.c
57 lines (48 loc) · 1.29 KB
/
lista_telefonica_hash.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
//Estrutura programa Tabela Hash - Professor Lucas.
#include <stdio.h>
#include <stdlib.h>
void adicionarContato() {
printf("Funcao para adicionar contato.\n");
}
void buscarContato() {
printf("Funcao para buscar contato.\n");
}
void removerContato() {
printf("Funcao para remover contato.\n");
}
void exibirContatos() {
printf("Funcao para exibir todos os contatos.\n");
}
int main() {
int opcao;
do {
printf("\nEscolha uma opcao:\n");
printf("1 - Adicionar contato\n");
printf("2 - Buscar contato por nome\n");
printf("3 - Remover contato\n");
printf("4 - Exibir todos os contatos\n");
printf("0 - Sair\n");
printf("Digite uma opcao: ");
scanf("%d", &opcao);
switch (opcao) {
case 1:
adicionarContato();
break;
case 2:
buscarContato();
break;
case 3:
removerContato();
break;
case 4:
exibirContatos();
break;
case 0:
printf("Saindo...\n");
break;
default:
printf("Opcao invalida! Tente novamente.\n");
}
} while (opcao != 0);
return 0;
}