p44军事机密secret.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章

你认为一些军事方面的软件系统采用什么样的开发模型比较合适?

C语言韩信点兵(容易超时)

c语言程序设计:现代方法 第二版p44中有一段语句: i = 2; j = i*i++; 的问题。

密码学的发展及应用

实验4-1-5 韩信点兵 (10分)

[PTA]实验4-1-5 韩信点兵