码迷,mamicode.com
首页 > 其他好文 > 详细

2504(多项式求和)

时间:2014-06-28 17:00:57      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:数据   os   name   for   c   io   

明明很简单,我却错了N++遍,主要原因是在于自己,给自己测试数据时,忘了测大数据,因为只保留小数点后两位,而200以后的数都是0.69.

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
using namespace std;
int main()
{
double a[1001];
double t;
int n,tt;
a[0]=0;
a[1]=1;
for(int i=2;i<=1001;i++)
{
t=1.0/i;
if(i%2==0)
a[i]=a[i-1]-t;
else a[i]=a[i-1]+t;
}
scanf("%d",&tt);
while(tt--)
{
scanf("%d",&n);
if(n<1000)
printf("%.2lf\n",a[n]);
else printf("0.69\n");
}
return 0;
}

2504(多项式求和),布布扣,bubuko.com

2504(多项式求和)

标签:数据   os   name   for   c   io   

原文地址:http://www.cnblogs.com/zhangmingcheng/p/3797750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!