码迷,mamicode.com
首页 > 编程语言 > 详细

【51NOD-0】1018 排序

时间:2017-05-26 19:36:04      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:lap   name   nod   51nod   ace   int   技术   space   for   

【算法】排序

技术分享
#include<cstdio>
#include<algorithm>
using namespace std;
int n,a[50010];
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)scanf("%d",&a[i]);
    sort(a+1,a+n+1);
    for(int i=1;i<=n;i++)printf("%d\n",a[i]);
    return 0;
}
View Code

 

【51NOD-0】1018 排序

标签:lap   name   nod   51nod   ace   int   技术   space   for   

原文地址:http://www.cnblogs.com/onioncyc/p/6910108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!