其他分享
首页 > 其他分享> > [PTA] 练习5-2 找两个数中最大者

[PTA] 练习5-2 找两个数中最大者

作者:互联网

本题要求对两个整数a和b,输出其中较大的数。

函数接口定义:

int max( int a, int b );

其中a和b是用户传入的参数,函数返回的是两者中较大的数。

裁判测试程序样例:

#include <stdio.h>

int max( int a, int b );

int main()
{    
    int a, b;

    scanf("%d %d", &a, &b);
    printf("max = %d\n", max(a, b));

    return 0;
}
/* 你的代码将被嵌在这里 */

输入样例:

-5 8

输出样例:

max = 8

代码

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

标签:return,函数,int,max,代码,样例,PTA,最大者,数中
来源: https://blog.csdn.net/u010171285/article/details/118457216