-
Lenguaje
C
-
Descripción
Reciba la altura de un conjunto es estudiantes y devuelva el promedio de las estaturas así como la cantidad de estudiantes.
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
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
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main (void)
{
int cantidad;
float estatura, promedio;
char tecla_repetir;
cantidad = 0;
promedio = 0;
do {
system ("cls");
printf ("Ingresa el valor de estatura: ");
scanf ("%f", &estatura);
(void) getchar ();
promedio=promedio+estatura;
cantidad=cantidad+1;
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
if (cantidad == 0)
{
promedio = 0;
}
else
{
promedio=promedio/cantidad;
}
printf ("Valor de cantidad: %d\n", cantidad);
printf ("Valor de promedio: %f\n", promedio);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <conio.h>
int main (void)
{
int cantidad;
float estatura, promedio;
char tecla_repetir;
cantidad = 0;
promedio = 0;
do {
system ("cls");
printf ("Ingresa el valor de estatura: ");
scanf ("%f", &estatura);
(void) getchar ();
promedio=promedio+estatura;
cantidad=cantidad+1;
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
if (cantidad == 0)
{
promedio = 0;
}
else
{
promedio=promedio/cantidad;
}
printf ("Valor de cantidad: %d\n", cantidad);
printf ("Valor de promedio: %f\n", promedio);
system ("pause");
return EXIT_SUCCESS;
}