#29599:


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a104. 排序 -- yoooooooo | From: [182.233.207.92] | 發表日期 : 2022-03-13 16:32

#include <iostream>

#include <string>

#include <sstream>

using namespace std;

int main()

{

int x;

while (cin >> x)

{

int y[1000];

for (int i = 0; i < x; i++)

{

cin >> y[i];

}

for (int i = 0; i < x; i++)

{

int idx = i;

for (int j = i; j < x; j++)

{

if (y[j] < y[idx])

{

idx = j;

}

}

swap(y[i], y[idx]);

}

for (int i = 0; i < x; i++)

{

cout << y[i] << " ";

}

cout << endl;

}

}

 
ZeroJudge Forum