Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1519 | 杨洋杰 | 08比较三个数大小II | C++ | Accepted | 0 MS | 264 KB | 268 | 2023-10-14 16:41:49 |
#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; }