題目連結: https://zerojudge.tw/ShowProblem?problemid=d323
# 解題思路
就是排序阿,你在猶豫什麼!!!
# 程式碼
#include <iostream> | |
#include <algorithm> | |
using namespace std; | |
int main() { | |
int n; | |
while(cin>>n){ | |
int arr[n]; | |
for(int i=0;i<n;i++) | |
cin>>arr[i]; | |
sort(arr,arr+n); | |
for(int i=0;i<n;i++) | |
cout<<arr[i]<<" "; | |
cout<<endl; | |
} | |
} |