本帖最後由 tonyh 於 2014-6-7 16:30 編輯
產生10個範圍介於0~999之不重複隨機亂數, 並由小而大將它們排列出來.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- re:
- int n[10],tmp;
- for(int i=0; i<10; i++)
- {
- n[i]=rand()%1000;
- 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[i]>n[j])
- {
- tmp=n[i];
- n[i]=n[j];
- n[j]=tmp;
- }
- }
- }
- cout<<"10個範圍介於0~999之不重複隨機亂數, 由小而大依序為:"<<endl;
- for(int i=0; i<10; i++)
- cout<<n[i]<<" ";
- cout<<endl;
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |