Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138631 曾钰涵 08比较三个数的大小 C++ Accepted 0 MS 276 KB 238 2025-11-29 11:31:27

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int x,y,z; cin>>x>>y>>z; if(x>=y&&x>=z) cout<<x<<endl; if(y>=x&&y>=z) cout<<y<<endl; if(z>=x&&z>=y) cout<<z<<endl; return 0; }