监考

题目

 

 

 

 这道题目十分简单,只要将奇数偶数分别放起来就可以了,4例外,排法为 3 1 4 2

程序

#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
    ios::sync_with_stdio(false);
    cin>>n;
    if(n==4) cout<<"3 1 4 2";
    else
    {
        for(int i=2;i<=n;i+=2) printf("%d ",i);
        for(int i=1;i<=n;i+=2) printf("%d ",i);
    }
    return 0;
}

 

posted @ 2023-03-26 17:56  王浩泽  阅读(21)  评论(0编辑  收藏  举报