Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
101770 梁晨熙 三实数排序 C++ 通过 100 0 MS 244 KB 181 2023-09-11 13:17:51

Tests(8/8):


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


测评信息: