Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
102030 王为治 三实数排序 C++ 通过 100 0 MS 252 KB 193 2023-09-12 13:14:26

Tests(8/8):


#include <bits/stdc++.h> using namespace std; signed main() { double a[4]; cin >> a[1] >> a[2] >> a[3]; sort(a+1,a+3+1); cout << a[1] << " " << a[2] << " " << a[3]; return 0; }


测评信息: