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

5个数求最值

时间:2017-10-16 13:47:22      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:语言   include   nbsp   int   href   pid   online   ++   others   

http://acm.nyist.net/JudgeOnline/problem.php?pid=31

c语言书上的题目

描述
设计一个从5个整数中取最小数和最大数的程序
输入
输入只有一组测试数据,为五个不大于1万的正整数
输出
输出两个数,第一个为这五个数中的最小值,第二个为这五个数中的最大值,两个数字以空格格开。
样例输入
1 2 3 4 5
样例输出
1 5
 1 #include<stdio.h>
 2 int main()
 3 {
 4     int a[5];
 5     int min=0;
 6     int max=0;
 7     for(int t=0;t<5;t++)
 8         scanf("%d",&a[t]);
 9     for(int t=1;t<5;t++)
10     {
11         if(a[max]<a[t])max=t;
12         if(a[min]>a[t])min=t;
13     }
14     printf("%d %d",a[min],a[max]);
15 }

 

5个数求最值

标签:语言   include   nbsp   int   href   pid   online   ++   others   

原文地址:http://www.cnblogs.com/pojdd/p/7676437.html

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