-
Notifications
You must be signed in to change notification settings - Fork 0
/
struct.c
169 lines (146 loc) · 4.03 KB
/
struct.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Exemplo de utilização de estruturas
// João Gabriel Silva - 2021/03/20
#include <stdio.h>
#include <string.h>
#include <locale.h>
#include <ctype.h>
#include <limits.h>
#include <errno.h>
#include <stdlib.h>
#include "lib-utf8.h"
static void novo(void);
static void tel(void);
static void listar(void);
static int ler_int(int *pres);
#define MAXCONTACTOS 20 // maximo de contactos a armazenar
#define TAMMAXNOME 50 // número máximo de bytes no nome
struct contactos {
char nome[TAMMAXNOME];
int num;
} lista[MAXCONTACTOS];
int main() {
int escolha, i;
setlocale(LC_ALL, "pt_PT.utf8");
// inicializar a lista
for (i = 0; i < MAXCONTACTOS; i++) {
lista[i].nome[0] = 0;
lista[i].num = 0;
}
while (1) {
printf("\n"
" 0 - Sair\n"
" 1 - Introduzir contacto novo\n"
" 2 - Obter telefone\n"
" 3 - Listar tudo\n"
"Escolha: ");
escolha = ' ';
while (isspace(escolha))
escolha = getchar();
while (getchar() != '\n'); //limpar o resto da linha
if (escolha == '0') return 0;
if (escolha == '1') novo();
else if (escolha == '2') tel();
else if (escolha == '3') listar();
else printf("Escolha inválida\n");
}
}
void novo(void) {
int i, t;
char nome[TAMMAXNOME];
// procurar a primeira posição vazia
i = 0;
while (i < MAXCONTACTOS && lista[i].nome[0] != 0) {
i++;
}
if (i == MAXCONTACTOS) {
printf("Não há espaço para mais contactos\n");
return;
}
printf("Introduza o nome: ");
fgets_u8(nome, TAMMAXNOME, stdin);
t = (int) strlen(nome);
if (nome[t - 1] == '\n')
nome[t - 1] = 0;
else
while (getchar() != '\n');
strtobase_u8(lista[i].nome, nome);
printf("Introduza o número: ");
while (ler_int(&lista[i].num) != 0) {
printf("Erro. Introduza de novo: ");
}
}
void tel(void) {
char nome_in[TAMMAXNOME];
char nome_base[TAMMAXNOME];
int i, t;
printf("Introduza o nome: ");
fgets_u8(nome_in, TAMMAXNOME, stdin);
t = (int) strlen(nome_in);
if (nome_in[t - 1] == '\n')
nome_in[t - 1] = 0;
else
while (getchar() != '\n');
strtobase_u8(nome_base, nome_in);
i = 0;
while (i < MAXCONTACTOS && lista[i].nome[0] != 0 && strcmp(nome_base, lista[i].nome) != 0)
i++;
if (i < MAXCONTACTOS && lista[i].nome[0] != 0)
printf("Número: %d\n", lista[i].num);
else
printf("Nome não encontrado\n");
}
// mostrar a lista toda
void listar(void) {
int i;
if (lista[0].nome[0] == 0)
printf("Lista vazia\n");
else
for (i = 0; i < MAXCONTACTOS && lista[i].nome[0] != 0; i++) {
printf("%s - ", lista[i].nome);
printf("%d\n", lista[i].num);
}
}
/* devolve zero se não houve problemas, um código de erro se houve:
* 1 - EOF
* 2 - Carateres inválidos ou a mais
* 3 - Transbordo
*/
#define TAM_LINHA_INT 30 //tamanho suficiente para qualquer inteiro
static int ler_int(int *pres) {
char *tail, *p;
long int numl;
int num, c;
char linha[TAM_LINHA_INT];
// buscar linha
p = fgets(linha, TAM_LINHA_INT, stdin);
if (p == NULL) {
return 1; // EOF
}
//Se a linha lida não termina por '\n' a linha era demasiado longa - erro
c = (int) strlen(linha);
if (linha[c - 1] != '\n') {
// limpar o resto da linha
while ((c = fgetc(stdin)) != EOF && c != '\n');
return 2;
}
//converter para long
errno = 0;
numl = strtol(linha, &tail, 0);
if (errno) {
return 3; //transbordo
}
// verificar que só há espaço branco no resto da linha
while ((*tail) != 0) {
if (!isspace((int) *tail)) {
return 2;
}
tail++;
}
// converter de long para int
if (numl <= INT_MAX && numl >= INT_MIN) {
num = (int) numl;
*pres = num;
return 0;
} else
return 3; //Transbordo
}