题解
2025-05-20 21:33:59
发布于:浙江
1阅读
0回复
0点赞
没人像一样偷鸡吗?
#include<iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int a,b;
cin>>a>>b;
cout<<"max="<<max(a, b)<<"\n";
cout<<"min="<<min(a, b)<<"\n";
return 0;
}
这里空空如也
有帮助,赞一个