这道题暴力就好了,但是输出格式需要很注意,题目中,两两间隔的数字会有空格,但是如果没有间隔,最后一个数字后面是不带空格的
#include <iostream>
using namespace std;
int main()
{
int n;
cin>>n;
int p;
for(int i=0;i<n;i++)
{
while(cin>>p)
{
int a[1000];
for(int j=0;j<p;j++)
{
cin>>a[j];
}
for(int x=0;x<p;x++)
{
for(int y=x;y<p;y++)
{
if(a[x]>a[y])
{
int t;
t=a[x];
a[x]=a[y];
a[y]=t;
}
}
}
for(int j=0;j<(p-1);j++)
{
cout<<a[j]<<" ";
}
cout<<a[p-1]<<endl;
}
}
}