c语言 编写一个程序 1-1⼀2+1⼀3-1⼀4+1⼀5……-1⼀99+1⼀100用while语句!

2024-11-19 07:49:19
推荐回答(1个)
回答1:

#include
int main()
{int i=1;
 float s=0;
 while(i<101)
 {if(i%2)s+=1.0/i;
    else s-=1.0/i;
  i++;  
 } 
 printf("%f\n",s);  
 return 0;
}