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

Tests(2/2):


Code:

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