#include <stdio.h>main(){ int i,k=1; float , sum=0; for(i=1;i<=100;i++) { sum+=k*1.0/i; k=-k; } printf("sum=%f\n",sum);}