Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115866 李林叡 08比较三个数大小II C++ Accepted 1 MS 280 KB 227 2025-04-05 14:23:15

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; if(n<x&&n<y){ cout<<n; } if(x<y&&x<n){ cout<<x; } if(y<n&&y<x){ cout<<y; } return 0; }