#11727: 史上最不要臉


HSUxMichael (IAmTotallyExhausted)

學校 : 臺北市立成功高級中學
編號 : 61983
來源 : [101.10.132.127]
最後登入時間 :
2020-10-11 12:31:31
a104. 排序 -- yoooooooo | From: [1.200.217.252] | 發表日期 : 2017-02-09 21:56

#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;

int main()
{
int n,i;
while(cin>>n){
int a[n];
for(i=0;i<n;i++){
cin>>a[i];
}
sort(a,a+n);
for(i=0;i<n;i++){
cout<<a[i]<<' ';
}
cout<<'\n';
}
return 0;
}

//AC(0ms,296kb)

//bubble=4ms, 292KB

 

 
ZeroJudge Forum