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

int main (void)
{
    int i, n, termino;
    printf ("Ingresa el valor de n: ");
    scanf ("%d", &n);
    (void) getchar ();
    for (i=1; i<=n; i++)
    {
        printf ("PROCESO %d\n", i);
        if(i%2==0)
            termino=-i*i;
        else
            termino=i*i;
        printf ("Valor de termino: %d\n", termino);
        putchar ('\n');
    }
    return EXIT_SUCCESS;
}