Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1464 杨洋杰 08比较三个数的大小 C++ Accepted 0 MS 268 KB 268 2023-09-30 17:48:38

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ long long a,b,c,t; cin>>a>>b>>c; if(a>b){ t=a; } else{ t=b; } if(t>c){ cout<<t<<endl; } else{ cout<<c<<endl; } return 0; }