Run ID:111105
提交时间:2025-02-26 21:21:50
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int a[n]; for(int i = 0; i < n; ++i) { cin >> a[i]; } for(int i = 0; i < n; i = i + 2) { if(i + 1 == n) continue; swap(a[i], a[i + 1]); } for(int i = 0; i < n; ++i) { cout << a[i] << ' '; } return 0; }