#25998: c++ AC


hesisi05@gmail.com (何承熹)

學校 : 不指定學校
編號 : 152060
來源 : [114.32.54.88]
最後登入時間 :
2021-07-05 13:37:23
a104. 排序 -- yoooooooo | From: [114.32.54.88] | 發表日期 : 2021-07-10 14:26

#include <iostream>

#include <algorithm>

 

using namespace std;

 

int main(){

int n;

while(cin >> n && 1<=n && n<=1000){

int arr[n];

for(int i=0;i<n;i++){

cin >> arr[i];

  }

  sort(arr, arr+n);

for (int j=0;j<n;j++) {

if (j == n-1) {

cout << arr[j] <<"\n";

}

else {

cout << arr[j] <<" ";

}

   

}

}

}

 
ZeroJudge Forum