Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137567 Kevin 求两个数较小的数 C++ Accepted 1 MS 272 KB 191 2025-11-19 19:49:06

Tests(2/2):


Code:

#include<bits/stdc++.h> using namespace std; int da(int a,int b) { int s; if(a>b) s=b; else s=a; return s; } int main() { int a,b; cin>>a>>b; cout<<da(a,b); return 0; }