Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
101975 Tom0 三实数排序 C++ 通过 100 0 MS 240 KB 312 2023-09-11 22:33:08

Tests(8/8):


#include <iostream> #include <algorithm> #include <map> using namespace std; typedef long long LL; 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 << endl; return 0; }


测评信息: