码迷,mamicode.com
首页 > 其他好文 > 详细

12月水题集锦

时间:2014-12-26 21:44:06      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:c++   acm   algorithm   

hdu 1040(本来想练个冒泡手速,竟然超时,果断sort。。。。)
<pre name="code" class="cpp">#include <stdio.h>
#include<algorithm>
using namespace std;
int str[1000],n;
#define  forxunhuan for(int i=0;i<n;i++)
int main(){
	int t;
	scanf("%d",&t);
	while(t--){ 
	    scanf("%d",&n);
		forxunhuan  scanf("%d",&str[i]);
		sort(str,str+n);
		forxunhuan{
		  if(i) printf(" ");
		  printf("%d",str[i]) ;
		}
		printf("\n");
	}
	return 0;
}



12月水题集锦

标签:c++   acm   algorithm   

原文地址:http://blog.csdn.net/jibancanyang/article/details/42177075

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