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

Problem H: 输入10个数,根据提示进行从小到大输出或从大到小输出

时间:2018-12-02 17:31:32      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:print   return   getch   clu   temp   i++   ble   tchar   amp   

#include <stdio.h>
int main(int argc, char *argv[])
{
 char ch;
 int a[11];
 int i,j,temp,fl;
 while(scanf("%c",&ch)!=EOF){
  for(i=0;i<10;i++){
   scanf("%d",&a[i]);
  }
  getchar();
  if(ch==‘A‘){
   for(i=1;i<10;i++){
    for(j=0;j<10-i;j++){
     if(a[j]>a[j+1])
     {
      temp=a[j];
      a[j]=a[j+1];
      a[j+1]=temp;
     }
     else fl=0;
    }
   }
   for(i=0;i<9;i++){
   printf("%d ",a[i]);
   }
   printf("%d\n",a[9]);
  }
  else if(ch==‘D‘){
   for(i=1;i<10;i++){
    for(j=0;j<10-i;j++){
     if(a[j]<a[j+1])
     {
      temp=a[j];
      a[j]=a[j+1];
      a[j+1]=temp;
     }
     else fl=1;
    }
   }
   for(i=0;i<9;i++){
   printf("%d ",a[i]);
   }
   printf("%d\n",a[9]);
  }
 }
 return 0;
 
}

Problem H: 输入10个数,根据提示进行从小到大输出或从大到小输出

标签:print   return   getch   clu   temp   i++   ble   tchar   amp   

原文地址:https://www.cnblogs.com/ars134419622/p/10054105.html

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