ZOJ007 Numerical Summation of a Series(纯数学)
Posted zhanglichen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ007 Numerical Summation of a Series(纯数学)相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h> using namespace std; int main() { double i; double k; for(i=0.000;i-2.000<=0.00000001;i+=0.001) { k=1; double sum=1+(1-i)/(2*10000*10000); while(k-10000<0) { sum+=(1-i)/(k*(k+i)*(k+1)); k=k+1; } printf("%5.3lf %16.12lf ",i,sum); } return 0; }
以上是关于ZOJ007 Numerical Summation of a Series(纯数学)的主要内容,如果未能解决你的问题,请参考以下文章
python 数据分析 Numpy(Numerical Python Basic)
Numerical and Text Labeling in Matplotlib Python
Softmax vs. Softmax-Loss: Numerical Stability(转载)