Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
101608 方文轩 三实数排序 C++ 通过 100 0 MS 248 KB 233 2023-09-09 11:17:09

Tests(8/8):


#include<iostream> using namespace std; int main() { double a,b,c; cin>>a>>b>>c; double x=max(max(a,b),c); double y=min(min(max(a,b),max(b,c)),max(a,c)); double z=min(min(a,b),c); cout<<z<<" "<<y<<" "<<x<<" "<<endl; }


测评信息: