viernes, 16 de noviembre de 2018


PROGRAMA QUE REALIZA TODAS LAS FUNCIONES BASICAS MATEMATICAS

#include <conio.h>
#include <stdio.h>
#include <math.h>

int main ()
{
                int a,d,x, res, rest, cub, cua, form;
                float z;
               
                printf ("\n INGRESE VALOR DE A:");
                scanf("%d", &a);
                printf ("\n INGRESE VALOR DE D:");
                scanf("%d", &d);
                printf ("\n INGRESE VALOR DE X:");
                scanf("%d", &x);
                res =a-d;
                cub=pow(1+x, 3);
                cua=pow(1,2);
                rest=11-5;
                form= 1+10/5+3*res+cua/2;
               
                z=cub/res*3/form;
                printf ("\n EL VALOR ES:%2.f",z);
                              
}

No hay comentarios.:

Publicar un comentario