使用long double
#include <iostream>
#include <cstdio>
using namespace std;
long double ans=0.0, xx;
int main(){
while(scanf("%Lf", &xx)!=EOF)
ans = ans + xx * 1000000;
printf("%.5Lf", ans/1000000);
return 0;
}
Posted poorpool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luogu2393 yyy loves Maths II相关的知识,希望对你有一定的参考价值。
使用long double
#include <iostream>
#include <cstdio>
using namespace std;
long double ans=0.0, xx;
int main(){
while(scanf("%Lf", &xx)!=EOF)
ans = ans + xx * 1000000;
printf("%.5Lf", ans/1000000);
return 0;
}
以上是关于luogu2393 yyy loves Maths II的主要内容,如果未能解决你的问题,请参考以下文章
luogu P2397 yyy loves Maths VI (mode)