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