对于学神来讲,简单过头了

魈凯KBS  •  5个月前


include <bits/stdc++.h>

using namespace std; int main() {

double a, b, c=0; 
cin>>a;
for(int i=1;i<=a;i++)
{ 
    cin >> b; c = c+b; 
} 
printf("%.2f", c/a);
return 0;

}


评论:

其实我觉得没必要打表


魈凯KBS  •  5个月前