• Lenguaje

    C

  • Descripción

    Dados como datos dos variables de tipo entero, obtenga el resultado de la siguiente función:

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

int main (void)
{
    int NUM, x, y;
    printf ("Ingresa el valor de NUM: ");
    scanf ("%d", &NUM);
    (void) getchar ();
    printf ("Ingresa el valor de x: ");
    scanf ("%d", &x);
    (void) getchar ();
    y=0;
    if(NUM==1)
        y=100.0*x;
    if(NUM==2)
        y=pow(100,x);
    if(NUM==3)
        y=100.0/x;
    printf ("Valor de y: %d\n", y);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}