You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
698 B

2 years ago
#include<bits/stdc++.h>
using namespace std;
//注意精度
long double S, T;
int main() {
/**
mycin.exe Windows
Ctrl+Z
Ctrl+Z cin>>n Ctrl +Z false
UNIX/Linux Ctrl+D
*/
while ((cin >> T) != 0) {
S += T * 1000000;
}
cout << fixed << setprecision(5) << S / 1000000;;
return 0;
}