1154. Easy sort ……sort

来源:互联网 发布:网络推广客服专员 编辑:程序博客网 时间:2024/04/27 16:15

1154. Easy sort

Constraints

Time Limit: 1 secs, Memory Limit: 32 MB

Description

You know sorting is very important. And this easy problem is:

Given you an array with N non-negative integers which are smaller than 10,000,000, you have to sort this array. Sorting means that integer with smaller value presents first.

Input

The first line of the input is a positive integer T. T is the number of the test cases followed.

The first line of each test case is a positive integer N (1<= N<= 1000) which represents the number of integers in the array. After that, N lines followed. The i-th line is the i-th integer in the array.

Output

The output of each test case should consist of N lines. The i-th line is the i-th integer of the array after sorting. No redundant spaces are needed.

Sample Input

2312311

Sample Output

1231

Problem Source

ZSUACM Team Member


#include <iostream>#include <algorithm>using namespace std;int main () {int T;cin>>T;while (T--) {int n;cin>>n;int a[1005];for (int i = 0; i < n; i++) {cin >> a[i];}sort(a, a + n);for (int i = 0; i < n; i++) {cout<<a[i]<<endl;}}//system("pause");return 0;}


0 0