返回列表 發帖

[作業] 排序 (二)

本帖最後由 tonyh 於 2014-6-7 16:30 編輯

產生10個範圍介於0~999之不重複隨機亂數, 並由小而大將它們排列出來.

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     re:
  9.     int n[10],tmp;
  10.     for(int i=0; i<10; i++)
  11.     {
  12.         n[i]=rand()%1000;
  13.         for(int j=0; j<i; j++)
  14.         {
  15.             if(n[i]==n[j])
  16.             {
  17.                 i--;
  18.                 break;              
  19.             }
  20.             
  21.         }   
  22.     }
  23.     for(int i=0; i<9; i++)
  24.     {
  25.         for(int j=i+1; j<10; j++)
  26.         {
  27.             if(n[i]>n[j])
  28.             {
  29.                 tmp=n[i];
  30.                 n[i]=n[j];
  31.                 n[j]=tmp;
  32.             }
  33.         }
  34.     }
  35.     cout<<"10個範圍介於0~999之不重複隨機亂數, 由小而大依序為:"<<endl;
  36.     for(int i=0; i<10; i++)
  37.         cout<<n[i]<<" ";
  38.     cout<<endl;
  39.     system("pause");
  40.     goto re;
  41.     return 0;   
  42. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表