#include <iostream>
#define DIM 10
using namespace std;
int main()
{
int a[DIM], i, b, temp, cont=0,t=0;
b = 2;
for (i = 0; i < DIM; i++)
{
cin >> a[i];
}
for (i = 0; i < DIM; i++)
{
if (a[i] == a[i + b])
{
cont++;
}
if ((i + b) >= 0 && (i + b) <= 9)
{
temp = a[i];
a[i] = a[i + b];
a[i + b] = temp;
}
if (cont > 0)
{
t = 1;
}
}
return 0;
}
il prof mi ha detto di usare quello