本帖最後由 陳品肇 於 2022-4-23 11:32 編輯
產生10個範圍介於1~20之不重複隨機亂數, 並利用選擇排序法將它們由小而大排列出來.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- srand(time(NULL));
- int n[10],tmp;
- re:
- for(int i=0; i<10; i++)
- {
- n[i]=rand()%20+1;
- for(int j=0; j<i; j++)
- {
- if(n[i]==n[j])
- {
- i--;
- break;
- }
- }
- }
- for(int i=0; i<9; i++)
- {
- for(int j=i+1; j<10; j++)
- {
- if(n[j]<n[i])
- {
- 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");
- goto re;
- return 0;
- }
複製代碼 |