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

C++ สุ่มตัวเลข 0-99 ไม่ซ้ำกัน 100 ตัว


srand(time(NULL));
int n[100],m;
int r;
int count = 0;
for (int i = 0; i<100; i++)
{
n[i] = i;
}
for (int x = 100; x>0; x--)
{
r = rand() % x;
cout << setw(4);
cout << n[r];
while (r<x - 1)
{
n[r] = n[r + 1];
r++;
}
}


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

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