收集邮票
Posted skip1978
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了收集邮票相关的知识,希望对你有一定的参考价值。
#include<cstdio>
#include<iostream>
typedef long double ld;
const int maxn = 10010;
int n;
int main(){
std::ios::sync_with_stdio(false),std::cin.tie(0);
std::cin >> n;
ld f=0,g=0;
for(int i=1;i<=n;++i){
g += (ld)n/i;
f += g * n / i;
}
printf("%.2Lf",f);
}
以上是关于收集邮票的主要内容,如果未能解决你的问题,请参考以下文章