c语言代码编程题汇总:找出三个数据中最大的数值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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语言代码编程题汇总:找出三个数据中最大的数值的主要内容,如果未能解决你的问题,请参考以下文章
c语言代码编程题汇总: 求出一个随机数的阶乘,采用for循环实现
找出一组数据中最大的数和最小的数,并将它们的位置互换。(C语言编程题,急求大神解答,明天早上要交...