-
Lenguaje
C
-
Descripción
Teniendo 10 edades mostrar cuantas de ellas son mayores de edad.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int edad, i, mayores;
mayores = 0;
for (i=1; i<=10; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de edad: ");
scanf ("%d", &edad);
(void) getchar ();
if(edad>=18)
mayores=mayores+1;
putchar ('\n');
}
printf ("Valor de mayores: %d\n", mayores);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int edad, i, mayores;
mayores = 0;
for (i=1; i<=10; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de edad: ");
scanf ("%d", &edad);
(void) getchar ();
if(edad>=18)
mayores=mayores+1;
putchar ('\n');
}
printf ("Valor de mayores: %d\n", mayores);
system ("pause");
return EXIT_SUCCESS;
}