16/11/2022 ; 5:28 PM

This commit is contained in:
2022-11-16 17:28:39 -04:00
commit 6ca133770c
16 changed files with 440 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#include <stdio.h>
#include <math.h>
/* Función matemática.
El programa obtiene el resultado de una función.
OP y T: variables de tipo entero.
RES: variable de tipo real. */
void main(void)
{
int OP, T;
float RES;
printf("Ingrese la opción del calculo y el valor entero: ");
scanf("%d %d", &OP, &T);
switch (OP)
{
case 1: RES = T / 5;
break;
case 2: RES = pow(T, T);
/* La función pow está definida en la biblioteca math.h */
break;
case 3:
case 4: RES = 6 * T / 2;
break;
default: RES = 1;
break;
}
printf("\nResultado: % 7.2f", RES);
}