-
Lenguaje
C
-
Descripción
Una librería muy famosa ofrece descuentos dependiendo de la editorial y del tipo de comprador, según la siguiente tabla:
EDITORIAL | ESTUDIANTE | PÚBLICO EN GENERAL
San Marcos | 25% | 10%
Coveñas - 30% | 13%
Otros | 35% | 16%
Construya un algoritmo que ingrese el importe de la compra, el tipo de comprador y la editorial, muestre el descuento, importante total a pagar. Asuma que el monto total de la compra es de una misma editora.
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int editorial, tipo_de_comprador;
float descuento, importante_total_a_pagar, importe_de_la_compra;
printf ("Ingresa el valor de importe de la compra: ");
scanf ("%f", &importe_de_la_compra);
(void) getchar ();
printf ("Selecciona el valor de editorial.\n");
printf ("\t1.- San Marcos\n");
printf ("\t2.- Cove\244as\n");
printf ("\t3.- Otros\n");
printf ("\t: ");
do {
scanf ("%d", &editorial);
(void) getchar ();
if (editorial<1||editorial>3)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (editorial<1||editorial>3);
printf ("Selecciona el valor de tipo de comprador.\n");
printf ("\t1.- Estudiante\n");
printf ("\t2.- P\243blico en general\n");
printf ("\t: ");
do {
scanf ("%d", &tipo_de_comprador);
(void) getchar ();
if (tipo_de_comprador<1||tipo_de_comprador>2)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (tipo_de_comprador<1||tipo_de_comprador>2);
descuento=0;
if(editorial==1&&tipo_de_comprador==1)
descuento=importe_de_la_compra*0.25;
if(editorial==1&&tipo_de_comprador==2)
descuento=importe_de_la_compra*0.1;
if(editorial==2&&tipo_de_comprador==1)
descuento=importe_de_la_compra*0.3;
if(editorial==2&&tipo_de_comprador==2)
descuento=importe_de_la_compra*0.13;
if(editorial==3&&tipo_de_comprador==1)
descuento=importe_de_la_compra*0.35;
if(editorial==3&&tipo_de_comprador==2)
descuento=importe_de_la_compra*0.16;
importante_total_a_pagar=importe_de_la_compra-descuento;
printf ("Valor de descuento: %g\n", descuento);
printf ("Valor de importante total a pagar: %g\n", importante_total_a_pagar);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int editorial, tipo_de_comprador;
float descuento, importante_total_a_pagar, importe_de_la_compra;
printf ("Ingresa el valor de importe de la compra: ");
scanf ("%f", &importe_de_la_compra);
(void) getchar ();
printf ("Selecciona el valor de editorial.\n");
printf ("\t1.- San Marcos\n");
printf ("\t2.- Cove\244as\n");
printf ("\t3.- Otros\n");
printf ("\t: ");
do {
scanf ("%d", &editorial);
(void) getchar ();
if (editorial<1||editorial>3)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (editorial<1||editorial>3);
printf ("Selecciona el valor de tipo de comprador.\n");
printf ("\t1.- Estudiante\n");
printf ("\t2.- P\243blico en general\n");
printf ("\t: ");
do {
scanf ("%d", &tipo_de_comprador);
(void) getchar ();
if (tipo_de_comprador<1||tipo_de_comprador>2)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (tipo_de_comprador<1||tipo_de_comprador>2);
descuento=0;
if(editorial==1&&tipo_de_comprador==1)
descuento=importe_de_la_compra*0.25;
if(editorial==1&&tipo_de_comprador==2)
descuento=importe_de_la_compra*0.1;
if(editorial==2&&tipo_de_comprador==1)
descuento=importe_de_la_compra*0.3;
if(editorial==2&&tipo_de_comprador==2)
descuento=importe_de_la_compra*0.13;
if(editorial==3&&tipo_de_comprador==1)
descuento=importe_de_la_compra*0.35;
if(editorial==3&&tipo_de_comprador==2)
descuento=importe_de_la_compra*0.16;
importante_total_a_pagar=importe_de_la_compra-descuento;
printf ("Valor de descuento: %g\n", descuento);
printf ("Valor de importante total a pagar: %g\n", importante_total_a_pagar);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}