-
Lenguaje
C
-
Descripción
Permita ingresar dos notas sobre 20 y determine su promedio, debe mostrar un comentario:
a. Aprobado si la nota está entre 14 y 20.
b. Reprobado si es menor a 14.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float nota_1, nota_2, promedio;
printf ("Ingresa el valor de nota 1: ");
scanf ("%f", ¬a_1);
(void) getchar ();
printf ("Ingresa el valor de nota 2: ");
scanf ("%f", ¬a_2);
(void) getchar ();
promedio=(nota_1+nota_2)/2;
if(promedio>=14&&promedio<=20)
printf ("Aprobado\n");
if(promedio<14)
printf ("Reprobado\n");
printf ("Valor de promedio: %g\n", promedio);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float nota_1, nota_2, promedio;
printf ("Ingresa el valor de nota 1: ");
scanf ("%f", ¬a_1);
(void) getchar ();
printf ("Ingresa el valor de nota 2: ");
scanf ("%f", ¬a_2);
(void) getchar ();
promedio=(nota_1+nota_2)/2;
if(promedio>=14&&promedio<=20)
printf ("Aprobado\n");
if(promedio<14)
printf ("Reprobado\n");
printf ("Valor de promedio: %g\n", promedio);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}