码迷,mamicode.com
首页 > 编程语言 > 详细

c语言代码编程题汇总:找出三个数据中最大的数值

时间:2017-03-09 13:07:24      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:class   nbsp   显示   stdio.h   clu   inpu   logs   数据   c++   

 

找出三个数据中最大的数值

  程序代码如下:

 

 1 /*
 2     2017年3月9日12:04:37
 3     功能:找出三个数据中最大的数值
 4 */
 5 #include"stdio.h"
 6 
 7 int fun(int,int,int);
 8 
 9 int main()
10 {
11     int a ,b,c;
12 
13     printf("please input three number: \n");
14 
15     scanf("%d %d %d",&a,&b,&c);
16 
17     printf("the maxium number is %d\n",fun(a,b,c));
18 
19 }
20 
21 int fun(int a,int b,int c)
22 {
23     if(a-b > 0 && a -c >0)
24         return a;
25     else if(b-a > 0 && b - c > 0)
26         return b;
27     else 
28         return c;
29 }
30 /*
31     总结:
32     在VC++6.0中显示的结果:
33     ————————————————————
34     please input three number:
35     23 45 67
36     the maxium number is 67
37     ————————————————————
38 
39 */

 

c语言代码编程题汇总:找出三个数据中最大的数值

标签:class   nbsp   显示   stdio.h   clu   inpu   logs   数据   c++   

原文地址:http://www.cnblogs.com/wxt19941024/p/6525033.html

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