-
Lenguaje
C
-
Descripción
Lea para un grupo de N personas el nombre, la edad y el deporte (1= fútbol, 2= baloncesto, 3= otro deporte) e imprima:
a) cuantos de fútbol son mayores de edad
b) cuantos de baloncesto son menores de edad
c) cuantas personas prefieren otro deporte.
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int a, b, c, deporte, edad;
int i, n;
char nombre[63];
a = 0;
b = 0;
c = 0;
printf ("Ingresa el valor de n: ");
scanf ("%d", &n);
(void) getchar ();
for (i=1; i<=n; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el nombre: ");
scanf ("%[^\r\n]", nombre);
(void) getchar ();
printf ("Ingresa el valor de edad: ");
scanf ("%d", &edad);
(void) getchar ();
printf ("Selecciona el valor de deporte.\n");
printf ("\t1.- f\243tbol\n");
printf ("\t2.- baloncesto\n");
printf ("\t3.- otro deporte\n");
printf ("\t: ");
do {
scanf ("%d", &deporte);
(void) getchar ();
if (deporte<1||deporte>3)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (deporte<1||deporte>3);
if(deporte==1&&edad>=18)
a=a+1;
if(deporte==2&&edad<18)
b=b+1;
if(deporte==3)
c=c+1;
printf ("Nombre: %s\n", nombre);
putchar ('\n');
}
printf ("Valor de a: %d\n", a);
printf ("Valor de b: %d\n", b);
printf ("Valor de c: %d\n", c);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int a, b, c, deporte, edad;
int i, n;
char nombre[63];
a = 0;
b = 0;
c = 0;
printf ("Ingresa el valor de n: ");
scanf ("%d", &n);
(void) getchar ();
for (i=1; i<=n; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el nombre: ");
scanf ("%[^\r\n]", nombre);
(void) getchar ();
printf ("Ingresa el valor de edad: ");
scanf ("%d", &edad);
(void) getchar ();
printf ("Selecciona el valor de deporte.\n");
printf ("\t1.- f\243tbol\n");
printf ("\t2.- baloncesto\n");
printf ("\t3.- otro deporte\n");
printf ("\t: ");
do {
scanf ("%d", &deporte);
(void) getchar ();
if (deporte<1||deporte>3)
printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
} while (deporte<1||deporte>3);
if(deporte==1&&edad>=18)
a=a+1;
if(deporte==2&&edad<18)
b=b+1;
if(deporte==3)
c=c+1;
printf ("Nombre: %s\n", nombre);
putchar ('\n');
}
printf ("Valor de a: %d\n", a);
printf ("Valor de b: %d\n", b);
printf ("Valor de c: %d\n", c);
system ("pause");
return EXIT_SUCCESS;
}