This repository has been archived by the owner on Aug 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tp9.c
154 lines (129 loc) · 4.2 KB
/
tp9.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
#include <stdio.h>
#include <stdlib.h>
#define TAM 10
typedef struct
{
char nombre[40];
int anio_nacimiento;
} autor_t;
typedef struct libro
{
char nombre[40];
int cant_paginas;
int cant_capitulos;
int *paginas_por_capitulo;
float precio;
autor_t datos_autor;
} libro_t;
void ingresar_cantidad(int *);
void cargar_biblioteca(libro_t *bib, int cant);
void imprimir_biblioteca(libro_t *bib, int cant);
void ordenar_por_precio_menor_mayor(libro_t *bib, int cant);
void ingresarEntero(int *);
void ingresarFlotante(float *);
void swap_libro(libro_t *a, libro_t *b);
int main()
{
libro_t biblioteca[TAM] = {0};
int cantidad;
ingresar_cantidad(&cantidad);
cargar_biblioteca(biblioteca, cantidad);
printf("===============================================\n");
printf("Imprimr biblioteca desordenada: \n");
imprimir_biblioteca(biblioteca, cantidad);
printf("===============================================\n");
printf("Imprimir biblioteca ordenada: \n");
ordenar_por_precio_menor_mayor(biblioteca, cantidad);
imprimir_biblioteca(biblioteca, cantidad);
return 0;
}
void ordenar_por_precio_menor_mayor(libro_t *bib, int cant)
{
for (int i = 0; i < cant - 1; i++)
for (int j = 0; j < cant - i - 1; j++)
if (bib[j].precio > bib[j + 1].precio)
swap_libro(&bib[j], &bib[j + 1]);
}
void swap_libro(libro_t *a, libro_t *b)
{
libro_t temp = *a;
*a = *b;
*b = temp;
}
void imprimir_biblioteca(libro_t *bib, int cant)
{
for (int i = 0; i < cant; i++)
{
printf("Nombre del libro: %s\n", bib[i].nombre);
printf("Cantidad de paginas: %d\n", bib[i].cant_paginas);
printf("Cantidad de capitulos: %d\n", bib[i].cant_capitulos);
for (int j = 0; j < bib[i].cant_capitulos; j++)
{
printf("Cantidad de paginas del capitulo %d: %d\n", j + 1, bib[i].paginas_por_capitulo[j]);
}
printf("Precio del libro: %.2f\n", bib[i].precio);
printf("Nombre del autor: %s\n", bib[i].datos_autor.nombre);
printf("Fecha de nacimiento del autor: %d\n", bib[i].datos_autor.anio_nacimiento);
i != cant - 1 ? printf("------------------------------------------------\n") : printf("\n");
}
}
void cargar_biblioteca(libro_t bib[], int tam)
{
for (int i = 0; i < tam; i++)
{
printf("Ingrese los datos del libro #%d:\n", i + 1);
printf("Nombre del libro: ");
scanf(" %[^\n]s", bib[i].nombre);
printf("Cantidad de capitulos: ");
ingresarEntero(&bib[i].cant_capitulos);
bib[i].paginas_por_capitulo = malloc(bib[i].cant_capitulos * sizeof(int));
for (int j = 0; j < bib[i].cant_capitulos; j++)
{
printf("Ingrese el numero de paginas en el capitulo %d: ", j + 1);
scanf("%d", &bib[i].paginas_por_capitulo[j]);
bib[i].cant_paginas += bib[i].paginas_por_capitulo[j];
}
printf("Precio: ");
ingresarFlotante(&bib[i].precio);
printf("Datos del autor:\n");
printf(" Nombre del autor: ");
scanf(" %[^\n]s", bib[i].datos_autor.nombre);
printf(" Ano de nacimiento del autor: ");
ingresarEntero(&bib[i].datos_autor.anio_nacimiento);
printf("\n");
}
}
void ingresar_cantidad(int *n)
{
printf("Ingrese el numero de libros:");
do
{
ingresarEntero(n);
if (n <= 0)
printf("debe ingresar un numero positivo. \n");
else if (*n > TAM)
printf("debe ingresar un numero menor a %d. ", TAM);
} while (n <= 0 || *n > TAM);
}
void ingresarEntero(int *val)
{
if (scanf(" %d", val) != 1)
{
printf("Debe ingresar un numero entero. ");
char c;
while ((c = getchar()) != '\n' && c != EOF)
;
ingresarEntero(val);
}
}
void ingresarFlotante(float *val)
{
if (scanf(" %f", val) != 1)
{
printf("Debe ingresar un numero flotante. ");
char c;
while ((c = getchar()) != '\n' && c != EOF)
;
ingresarFlotante(val);
}
}