#include "stdio.h" #include "math.h" void main() { float deno=1.0,sum=1.0,term; while(deno<=99) { term = pow((-1),(int)deno)*deno / (deno+1); sum += term; deno += 1; } printf("%f",sum); }