• Lenguaje

    C

  • Descripción

    Dado los datos enteros A y B, escriba el resultado de la siguiente expresión: (A+B)^2/3

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

int main (void)
{
    float A, B, x;
    printf ("Ingresa el valor de A: ");
    scanf ("%f", &A);
    (void) getchar ();
    printf ("Ingresa el valor de B: ");
    scanf ("%f", &B);
    (void) getchar ();
    x=pow(A+B,2.0/3.0);
    printf ("Valor de x: %g\n", x);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}