返回列表 發帖

排序 (一)

本帖最後由 葉桔良 於 2023-4-1 20:22 編輯

利用選擇排序法, 將任意6個整數, 由小而大排列出來.

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n[6] = {12, 57, -6, -32, 0, 23};
  8.     cout<<"排序前: ";
  9.     for(int i=0; i<6; i++)
  10.         cout<<n[i]<<" ";
  11.     cout<<endl;
  12.    
  13.     for(int i=0; i<5; i++)
  14.     {
  15.         for(int j=i+1; j<6; j++)
  16.             if(n[i]>n[j])
  17.             {
  18.                 int tmp;
  19.                 tmp = n[i];
  20.                 n[i] = n[j];
  21.                 n[j] = tmp;         
  22.             }      
  23.     }   
  24.    
  25.     cout<<"排序後: ";
  26.     for(int i=0; i<6; i++)
  27.         cout<<n[i]<<" ";
  28.     cout<<endl;
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表