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

Problem A: 调用函数,求三个数中最大数

时间:2018-10-31 00:01:07      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:while   最大   ret   problem   stdio.h   include   print   main   div   

#include<stdio.h>
int max(int a,int b,int c);
int main()
{
    int a,b,c;
    while(scanf("%d %d %d",&a,&b,&c)!=EOF){
    printf("%d\n",max(a,b,c));}
    return 0;
}

int max(int a,int b,int c)
{
    int m;
    m=a;
    if(b>m)
    m=b;
    if(c>m)
    m=c;
    return m;
}

 

Problem A: 调用函数,求三个数中最大数

标签:while   最大   ret   problem   stdio.h   include   print   main   div   

原文地址:https://www.cnblogs.com/chenlong991223/p/9880174.html

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