Skip to content

Instantly share code, notes, and snippets.

@pinglunliao
Last active November 5, 2019 08:40
Show Gist options
  • Save pinglunliao/e42b2e05f8419e430bb7 to your computer and use it in GitHub Desktop.
Save pinglunliao/e42b2e05f8419e430bb7 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <algorithm>
using namespace std;
int main(int argc, char** argv) {
int n;
while(cin >> n)
{
int data[n];
for(int i = 0; i < n; i++)
cin >> data[i];
sort(data, data+n);
for(int i = 0; i < n; i++)
cout << data[i] << " ";
cout << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment