(c++)1-23+35-47+59-611+...

(c++)1-23+35-47+59-611+...,第1张

(c++)1-2/3+3/5-4/7+5/9-6/11+... 输入格式:

Enter a positive integer n.

输出格式: Output the value of the partial sum, retaining three decimal places.

 

#include
#include
using namespace std;
int main ()
{
    int n,i=1,x=1,y=1;
    float sum;
    cin>>n;
  while (i<=n)
  {
      sum+=i/(x*y*1.0);
      i++;
      x=-x;
      y=y+2;
  }
  cout< return 0;
}
 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5097751.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存