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

南阳243

时间:2017-02-01 16:34:19      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:stdio.h   while   span   can   bsp   int   print   std   scanf   

 1 #include<stdio.h>
 2 int a[100];
 3 int main()
 4 {
 5     int n;
 6     while(~scanf("%d",&n) && n)
 7     {
 8         int i,j;
 9         for(i=j=0; i<n; ++i)
10         {
11             scanf("%d",&a[i]);
12             if(a[i]<a[j])
13                 j=i;
14         }
15         if(j)
16         {
17             int temp=a[0];
18             a[0]=a[j];
19             a[j]=temp;
20         }
21         for(i=0; i<n; ++i)
22             if(i)
23                 printf(" %d",a[i]);
24             else
25                 printf("%d",a[i]);
26         puts("");
27     }
28 }
29         

 

南阳243

标签:stdio.h   while   span   can   bsp   int   print   std   scanf   

原文地址:http://www.cnblogs.com/qq188380780/p/6360071.html

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