标签: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 */
标签:class nbsp 显示 stdio.h clu inpu logs 数据 c++
原文地址:http://www.cnblogs.com/wxt19941024/p/6525033.html