-
Lenguaje
C
-
Descripción
Un club cobra una cuota mensual a sus socios a quienes dividen en activo, familiar y cadete.
El socio activo para el valor es de $500, el familiar un 50 por ciento mas y el cadete 20 por ciento menos que el socio activo.
Se ingresa por teclado el numero de socio, el nombre y apellido, el tipo de socio "Activo, Familiar y Cadete".
Informar lo siguiente:
a) El numero de socio
b) El nombre del socio
c) Tipo de socio
d) Total a pagar
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int tipo_de_socio;
float total_a_pagar;
char nombre[63], apellido[63];
printf ("Ingresa el nombre: ");
scanf ("%[^\r\n]", nombre);
(void) getchar ();
printf ("Ingresa el apellido: ");
scanf ("%[^\r\n]", apellido);
(void) getchar ();
total_a_pagar=500;
printf ("Selecciona el valor de tipo de socio.\n");
printf ("\t1.- Activo\n");
printf ("\t2.- Familiar\n");
printf ("\t3.- Cadete\n");
printf ("\t: ");
do {
scanf ("%d", &tipo_de_socio);
(void) getchar ();
if (tipo_de_socio<1||tipo_de_socio>3)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (tipo_de_socio<1||tipo_de_socio>3);
if(tipo_de_socio==1)
{
printf ("Activo\n");
total_a_pagar=total_a_pagar*1.5;
}
if(tipo_de_socio==2)
{
printf ("Familiar\n");
total_a_pagar=total_a_pagar*1.5*1.2;
}
if(tipo_de_socio==3)
printf ("Cadete\n");
printf ("Nombre: %s\n", nombre);
printf ("Apellido: %s\n", apellido);
printf ("Valor de total a pagar: %g\n", total_a_pagar);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int tipo_de_socio;
float total_a_pagar;
char nombre[63], apellido[63];
printf ("Ingresa el nombre: ");
scanf ("%[^\r\n]", nombre);
(void) getchar ();
printf ("Ingresa el apellido: ");
scanf ("%[^\r\n]", apellido);
(void) getchar ();
total_a_pagar=500;
printf ("Selecciona el valor de tipo de socio.\n");
printf ("\t1.- Activo\n");
printf ("\t2.- Familiar\n");
printf ("\t3.- Cadete\n");
printf ("\t: ");
do {
scanf ("%d", &tipo_de_socio);
(void) getchar ();
if (tipo_de_socio<1||tipo_de_socio>3)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (tipo_de_socio<1||tipo_de_socio>3);
if(tipo_de_socio==1)
{
printf ("Activo\n");
total_a_pagar=total_a_pagar*1.5;
}
if(tipo_de_socio==2)
{
printf ("Familiar\n");
total_a_pagar=total_a_pagar*1.5*1.2;
}
if(tipo_de_socio==3)
printf ("Cadete\n");
printf ("Nombre: %s\n", nombre);
printf ("Apellido: %s\n", apellido);
printf ("Valor de total a pagar: %g\n", total_a_pagar);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}