70pts求条
查看原帖
70pts求条
1098831
OIratrace楼主2025/8/4 21:03
#include<bits/stdc++.h>
#define int long long
using namespace std;
signed main(){
	ios::sync_with_stdio(0),cin.tie(0);
	double sum=0;
	double x;
	while (cin>>x)sum+=x;
	cout<<fixed<<setprecision(5)<<sum;
	return 0;
}
2025/8/4 21:03
加载中...