| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134015 | 李昱龙 | 08比较三个数大小II | C++ | Wrong Answer | 1 MS | 268 KB | 206 | 2025-10-25 14:18:43 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a<b&&a<c){ cout<<a<<endl; }if(b<a&&b<c){ cout<<b<<endl; }else{ cout<<c<<endl; } return 0; }
------Input------
69 90 74
------Answer-----
69
------Your output-----
69 74