感谢发明sort的人!
2024-02-25 20:25:16
发布于:广东
11阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
bool cmp(int x,int y)
{
if(x < y) return true;
else return false;
}
int main()
{
int n,a[111];
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i];
sort(a+1,a+1+n,cmp);
cout<<a[1];
return 0;
}
这里空空如也
有帮助,赞一个