1 条题解
-
0房佳坤 LV 10 @ 2021-02-10 18:28:32
#include <iostream> #include <cstdio>//水题 没难度 using namespace std; int main() { int n;cin>>n; int a[n]; float s; for(int i=1;i<=n;i++) { cin>>a[i]; s+=a[i]; } float ss=s/n; printf("%.4f",ss); return 0; }
- 1
信息
- 难度
- 3
- 分类
- (无)
- 标签
- (无)
- 递交数
- 579
- 已通过
- 134
- 通过率
- 23%
- 上传者