#29885: 精簡的 C++ 快速解法


ck1100685@gl.ck.tp.edu.tw (LNJ)

學校 : 臺北市立建國高級中學
編號 : 181256
來源 : [220.137.164.58]
最後登入時間 :
2022-04-08 22:10:24
a104. 排序 -- yoooooooo | From: [220.137.164.58] | 發表日期 : 2022-04-08 22:18

<code><pre>

#include <bits/stdc++.h>

 

signed main() {

  std::ios::sync_with_stdio(false);

  std::cin.tie(NULL);

 

  int n, a[850] = {};

 

  while (std::cin >> n) {

    for (int i = 0; i < n; i++) std::cin >> a[i];

 

    std::sort(a, a + n);

 

    for (int i = 0; i < n; i++) std::cout << a[i] << " \n"[i == n - 1];

  }

}

 

</pre></code>

 
ZeroJudge Forum