| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125030 | emm | 三实数排序 | C++ | Accepted | 100 | 0 MS | 244 KB | 255 | 2024-01-23 16:20:38 |
#include<iostream> #include<cstdio> using namespace std; int main() { double a,b,c; cin>>a>>b>>c; if(a>b) { swap(a,b); } if(a>c) { swap(a,c); } if(b>c) { swap(b,c); } cout <<a<<" "<<b<<" "<<c; return 0; }