C++98基礎(chǔ).max函數(shù)和sort函數(shù)調(diào)用
#include <iostream>
//調(diào)用算法庫
#include <algorithm>
using namespace std;
int n, a[105], b[105];
int main()
{
? ? cin >> n;
? ? for (int i = 1; i <= n / 2; i++)
? ? {
? ? ? ? cin >> a[i];
}
for (int i = 1; i <= n / 2; i++)
? ? {
? ? ? ? cin >> b[i];
}
//利用sort函數(shù)對數(shù)組a的a[1]到a[n/2]排序
sort(a+1,a+n/2+1);
//利用sort函數(shù)對數(shù)組b的b[1]到b[n/2]排序
? ? sort(b+1,b+n/2+1);
? ? for (int i = 1; i <= n / 2; i++)
{
//輸出a[i]和b[i]中較大的一個并空格
? ? ? ? int d=max(a[i],b[i]);
? ? ? ? cout<<d<<" ";
? ? }
? ? return 0;
}
標(biāo)簽: