本帖最後由 tonyh 於 2021-4-24 20:47 編輯
產生10個範圍介於1~20之不重複隨機亂數, 並利用選擇排序法將它們由小而大排列出來.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int n[10];
- for(int i=0; i<10; i++)
- {
- n[i]=rand()%20+1;
- for(int j=0; j<i; j++)
- {
- if(n[j]==n[i])
- {
- i--;
- break;
- }
- }
- }
- for(int i=0; i<9; i++)
- {
- for(int j=i+1; j<10; j++)
- {
- if(n[j]<n[i])
- {
- int tmp=n[j];
- n[j]=n[i];
- n[i]=tmp;
- }
- }
- }
-
- cout<<"10個範圍介於1~20之不重複隨機亂數,由小而大依序為:"<<endl;
- for(int i=0; i<10; i++)
- cout<<n[i]<<" ";
- cout<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |