-
Lenguaje
C
-
Descripción
Una Agencia de Viajes cobra por un Tour a la ciudad de Caral por 350 soles por persona. Realice un algoritmo que determine el monto a pagar por una familia que desee realizar dicho Tour sabiendo que también se les va a cobrar el 18% del IGV.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float IGV, numero_de_personas, subtotal, total;
printf ("Ingresa el valor de numero de personas: ");
scanf ("%f", &numero_de_personas);
(void) getchar ();
subtotal=numero_de_personas*350;
IGV=subtotal*0.18;
total=subtotal+IGV;
printf ("Valor de IGV: %g\n", IGV);
printf ("Valor de subtotal: %g\n", subtotal);
printf ("Valor de total: %g\n", total);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float IGV, numero_de_personas, subtotal, total;
printf ("Ingresa el valor de numero de personas: ");
scanf ("%f", &numero_de_personas);
(void) getchar ();
subtotal=numero_de_personas*350;
IGV=subtotal*0.18;
total=subtotal+IGV;
printf ("Valor de IGV: %g\n", IGV);
printf ("Valor de subtotal: %g\n", subtotal);
printf ("Valor de total: %g\n", total);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}