标签:
1 10 20 40 32 67 40 20 89 300 400 15
8 15 20 32 40 67 89 300 400
代码:
01.
#include<stdio.h>
02.
#include<iostream>
03.
using
namespace
std;
04.
int
main()
05.
{
06.
int
n,m,k,a[110],temp;
07.
cin>>n;
08.
while
(n--)
09.
{
10.
cin>>m;k = 0;
11.
for
(
int
i=0;i<m;i++)
12.
cin>>a[i];
13.
for
(
int
i=0;i<m-1;i++)
14.
for
(
int
j=i;j<m;j++)
15.
if
(a[i]>a[j])
16.
{
17.
temp = a[i];
18.
a[i] = a[j];
19.
a[j] = temp;
20.
}
21.
for
(
int
i=0;i<m;i++)
22.
{
23.
if
(a[i]>a[i-1])
24.
k++;
25.
}
26.
cout<<k<<endl;
27.
for
(
int
i=0;i<m;i++)
28.
{
29.
if
(a[i]>a[i-1])
30.
cout<<a[i]<<
" "
;
31.
}
32.
cout<<endl;
33.
}
34.
return
0;
35.
}
标签:
原文地址:http://blog.csdn.net/u012701023/article/details/46042053