You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
272 B

#include <bits/stdc++.h>
const int N = 5;
using namespace std;
int main() {
int a[N] = {9, 6, 5, 4, 1};
for (int i = 0; i < N / 2; i++)
swap(a[i], a[N - i - 1]);
for (int i = 0; i < N; i++)
printf("%4d", a[i]);
return 0;
}