วันพุธที่ 9 พฤศจิกายน พ.ศ. 2559

C++ สลับตำแหน่งใน array เช่น a[0] กับ a[1] , a[2] กับ a[3]


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";
}


ไม่มีความคิดเห็น:

แสดงความคิดเห็น