a104.排序

a104.排序



解題思路 : sort 函式

程式碼

/*
a104. 排序
https://zerojudge.tw/ShowProblem?problemid=a104
sss
2023/10/3
AC (4ms, 316KB)
*/

#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    while(scanf("%d", &n) != EOF){
        int a[1005] = {0};

        for(int i=0; i<n; i++){
            scanf("%d", &a[i]);
        }

        sort(a, a+n);

        printf("%d",a[0]);
        for(int i=1; i<n; i++){
            printf(" %d", a[i]);
        }

        printf("\n");
    }
    return 0;
}



留言

這個網誌中的熱門文章

b971 等差數列

c290. APCS 2017-0304-1秘密差

d066.上學去吧!