Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99822 | 罗迎甲 | 18统计成绩 | C++ | Wrong Answer | 1 MS | 272 KB | 681 | 2024-11-30 17:39:32 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a[99]; double maxz; int n,man=0,maian=0,minm=100; cin>>n; for(int z=0;z<n;z++){ cin>>a[z]; } for(int z=0;z<n;z++){ man+=a[z]; if(a[z]>maian) maian=a[z]; if(a[z]<minm) minm=a[z]; } maxz=(double)man/n; cout<<man<<" "; printf("%.2lf",man); cout<<maian<<" "<<minm<<" "; return 0; }
------Input------
94 37 11 50 6 13 53 47 64 49 29 92 32 59 66 49 36 81 35 4 81 41 1 85 54 13 77 95 58 15 70 80 34 38 42 2 90 17 23 5 36 53 93 52 6 4 46 39 76 33 62 26 74 60 20 28 71 81 56 97 61 8 3 17 21 92 22 69 39 98 57 77 31 76 34 92 19 91 12 23 75 86 31 73 39 15 59 8 86 27 75 70 69 32 94
------Answer-----
4528 48.17 98 1
------Your output-----
4528 0.0098 1