首页 > 代码库 > p44军事机密secret.cpp

p44军事机密secret.cpp

/*************************************************
File name: // 文件名
Author: NBS//作者
Version:2.2.2 //版本
Date: 20017.02.10// 日期
Description: 军事机密// 用于详细说明此程序文件完成的主要功能,与其他模块
*************************************************/
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<iomanip>
#include<cstdlib>
using namespace std;


int a[30001],b[30001];
int main()
{
int n,p,o,c=1;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a[i];
}
for(int k=1;k<=n;k++)
for(int j=k;j<=n;j++)
{
if(a[k]>a[j])
{
p=a[k];
a[k]=a[j];
a[j]=p;
}
}
cin>>o;
for(int l=1;l<=n;l++)
{
cin>>b[l];
while(b[c]!=0)
{
cout<<a[b[c]]<<endl;
c++;
}
}
return 0;






}

 

p44军事机密secret.cpp