| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125275 | 吴悠 | 三实数排序 | C++ | Accepted | 100 | 0 MS | 252 KB | 188 | 2024-01-23 16:40:40 |
#include<iostream> #include<algorithm> using namespace std; int main(){ double a[4]; cin>>a[1]>>a[2]>>a[3]; sort(a+1,a+4); cout<<a[1]<<" "<<a[2]<<" "<<a[3]<<endl; return 0; }