peige


私信TA

用户名:peige

访问量:34616

签 名:

求你们别学啦,我跟不上

等  级
排  名 273
经  验 5802
参赛次数 0
文章发表 65
年  龄 20
在职情况 学生
学  校 华南农业大学
专  业 软件工程

  自我简介:

求你们别学啦,我跟不上

解题思路:





注意事项:





参考代码:

#include <stdio.h>

#include <stdlib.h>

#include <math.h>

#define MAX(a,b,c) (a>b?a:b)>c?(a>b?a:b):c

double Max(double a,double b,double c)

{

    double max;

    max=a;

    if(b>max)

        max=b;

    if(c>max)

        max=c;

    return max;

}

int main()

{

    double a,b,c;

    scanf("%lf%lf%lf",&a,&b,&c);

    printf("%.3lf\n",Max(a,b,c));

    printf("%.3lf",MAX(a,b,c));

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »