#include <bits/stdc++.h> using namespace std; //外部结构体 struct nums{ int num; }; //升序函数 bool compare1(nums a,nums b) { return a.num<b.num; } //降序函数 bool compare0(nums a,nums b) { return a.num>b.num; } //主函数编写 int main() { //初始化数据 int n,flag; while(cin>>n) { //创建数据容器 vectorans; //遍历循环...