srand(time(NULL));
int n[50];
int temp;
for (int i = 0; i<50; i++)
{
n[i] = -50 + rand() % 100;
}
for (int i = 0; i<50; i++)
{
if (i % 10 == 0)
cout << endl;
cout << n[i] << "\t";
}
cout << endl << endl;
for (int j = 0; j<50; j += 2)
{
temp = n[j];
n[j] = n[j + 1];
n[j + 1] = temp;
}
for (int i = 0; i<50; i++)
{
if (i % 10 == 0)
cout << endl;
cout << n[i] << "\t";
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น