-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula7-struct-livro.c
72 lines (56 loc) · 1.46 KB
/
aula7-struct-livro.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
// Livro: nome, autor, ISBN, preço. Usuário cadastra 10 livros. Solicita numero ISBN e deve buscar no cadastro. Se for encontrado apresentar os dados.
#include <stdio.h>
int numeroBuscado;
int resultadoBusca = 0;
typedef struct Livro
{
char titulo[50];
char autor[50];
int isbn;
int preco;
} LIVRO;
LIVRO biblioteca[10]; // array de 10 estruturas do tipo LIVRO
int cadastrarLivros()
{
// preencher array com livros
for (int i = 0; i < 10; i++)
{
printf("Digite o título do livro %d: ", i + 1);
scanf(" %[^\n]", biblioteca[i].titulo);
printf("Digite o autor do livro %d: ", i + 1);
scanf(" %[^\n]", biblioteca[i].autor);
printf("Digite o ISBN do livro %d: ", i + 1);
scanf("%d", &biblioteca[i].isbn);
getchar(); // consumir o caractere de nova linha deixado pelo scanf
}
return 0;
}
int buscarLivro()
{
printf("Informe o ISBN a ser buscado: \n");
scanf("%i", &numeroBuscado);
// iterar array para buscar
for (int i = 0; i < 10; i++)
{
if (biblioteca[i].isbn == numeroBuscado)
{
printf("Livro com ISBN %i encontrado! \n", numeroBuscado);
printf("Livro: %d\n", i + 1);
printf("Título: %s\n", biblioteca[i].titulo);
printf("Autor: %s\n", biblioteca[i].autor);
printf("Ano: %d\n", biblioteca[i].isbn);
resultadoBusca = 1;
}
}
if (!resultadoBusca)
{
printf("Livro não encontrado! \n");
}
return 0;
}
int main()
{
cadastrarLivros();
buscarLivro();
return 0;
}