• Lenguaje

    C

  • Descripción

    Dado un número n por el usuario, resolver:

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

int main (void)
{
    int i, n;
    float x, y;
    y = 0;
    printf ("Ingresa el valor de n: ");
    scanf ("%d", &n);
    (void) getchar ();
    for (i=1; i<=n; i++)
    {
        printf ("PROCESO %d\n", i);
        x=i;
        y=y+(x*x+2-3)/(x*x+9);
        printf ("Valor de x: %g\n", x);
        putchar ('\n');
    }
    printf ("Valor de y: %f\n", y);
    system ("pause");
    return EXIT_SUCCESS;
}