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

输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数。

时间:2019-03-09 01:05:40      阅读:635      评论:0      收藏:0      [点我收藏+]

标签:style   class   can   题目   std   sample   include   print   array   


题目描述

输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数。


输入

十个数


输出

交换后的十个数


样例输入
10 2 30 40 50 60 70 80 90 100

样例输出
10 100 30 40 50 60 70 80 90 2


1
#include<stdio.h> 2 void fun_A(); 3 int abs(int n); 4 void swap(int *,int *); 5 int main() 6 { 7 fun_A(); 8 return 0; 9 } 10 void fun_A() 11 { 12 const int n=10; 13 int array[n]; 14 int key=0; 15 for(int i=0;i<10;i++) 16 scanf("%d",&array[i]); 17 for(int i=1;i<10;i++) 18 if(abs(array[key])>abs(array[i])) 19 key=i; 20 if(key!=n-1) 21 swap(&array[key],&array[n-1]); 22 for(int i=0;i<10;i++) 23 printf("%d ",array[i]); 24 } 25 int abs(int n) 26 { 27 return n>0?n:-n; 28 } 29 void swap(int *a,int *b) 30 { 31 int t=*a; 32 *a=*b; 33 *b=t; 34 }

 

 

输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数。

标签:style   class   can   题目   std   sample   include   print   array   

原文地址:https://www.cnblogs.com/ysxyan/p/10498847.html

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