Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
102177 宋春霖 三实数排序 C++ 解答错误 75 0 MS 248 KB 190 2023-09-12 13:46:20

Tests(6/8):


#include<bits/stdc++.h> using namespace std; int 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; }


测评信息: