• Lenguaje

    C

  • Descripción

    Leer el valor de X y a partir de él hallar el valor de W que se calcula a partir de la expresión:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main (void)
{
    float W, x;
    printf ("Ingresa el valor de x: ");
    scanf ("%f", &x);
    (void) getchar ();
    W=pow(x*x+4.0*x/(x-3),4.0/5.0)+x*x;
    printf ("Valor de W: %g\n", W);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}