| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 102699 | Fess | 三实数排序 | C++ | Accepted | 100 | 0 MS | 240 KB | 229 | 2023-09-14 13:27:00 |
#include<iostream> #include<algorithm> using namespace std; int main() { double a,b,c; cin>>a>>b>>c; cout<<min(a,min(b,c))<<' '; cout<<min(max(a,c),min(max(a,b),max(b,c)))<<' '; cout<<max(a,max(b,c)); return 0; }