| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80318 | sh25_wangtaojie | 题目的分数值 | C++ | No Test Data | 0 MS | 0 KB | 303 | 2026-01-04 15:12:36 |
#include <bits/stdc++.h> using namespace std; int main() { int s,m=0,mn=1001; double j=0; for(int i=1;i<=10;++i) { cin>>s; j+=s; if(s>m){ m=s; } if(s<mn){ mn=s;} } cout<<m<<", "<<mn<<", "<<fixed<<setprecision(2)<<1.0*j/10; return 0; }