P1035 级数求和
Posted kazama
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1035 级数求和相关的知识,希望对你有一定的参考价值。
第一种解法
枚举,这个除了注意类型转换以外没什么好说。
第二种解法 调和级数求和
#include<cstdio> #include<cmath> const double gamma=0.5772156649; int main() { int k,n; scanf("%d",&k); n=exp(k-gamma)+0.5; printf("%d",n); return 0; }
以上是关于P1035 级数求和的主要内容,如果未能解决你的问题,请参考以下文章