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

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; }