蓝桥杯基础练习数列排序

问题描述
  给定一个长度为n的数列,将这个数列按从小到大的顺序排列。1<=n<=200
输入格式
  第一行为一个整数n。
  第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。
输出格式
  输出一行,按从小到大的顺序输出排序后的数列。
样例输入
5
8 3 6 4 9
样例输出
3 4 6 8 9

直接用sort函数排序就行了;
code:

#include 
#include
#include
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
    int a[10010];
    int n;
    scanf("%d",&n);
    for(int i=0;iscanf("%d",&a[i]);
    }
    sort(a,a+n);
    printf("%d",a[0]);
    for(int i=1;iprintf(" %d",a[i]);
    }
    printf("\n");
    return 0;
}

你可能感兴趣的:(水题,蓝桥杯)