Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7348 | 邓小龙 | 08比较三个数大小II | C++ | Accepted | 0 MS | 256 KB | 344 | 2025-04-19 18:28:45 |
#include <iostream> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c; if(a<b) { if(a<c) { d=a; } else { d=c; } } else { if(b < c) { d=b; } else { d=c; } } cout<<d; return 0; }