Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
102201 宋春霖 三实数排序 C++ 通过 100 0 MS 248 KB 193 2023-09-12 13:52:29

Tests(8/8):


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


测评信息: