Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55016 | 万正钰 | 求两个数较小的数 | C++ | Accepted | 2 MS | 272 KB | 228 | 2023-07-26 08:58:43 |
#include<iostream> #include<cstdio> using namespace std; int main() { int n1,n2; cin>>n1>>n2; int than(int j1,int j2); cout<<than(n1,n2); return 0; } int than(int j1,int j2) { return (j1>j2? j2:j1); }