看看代码就明白了
参考代码:
#include <stdio.h>
#include <stdlib.h>
#define f(A,B,C) (A>B ? A:B)>(B>C ? B:C) ? (A>B ? A:B):(B>C ? B:C)
float Max(float A,float B,float C){
float t;
t=A>B ? A:B;
t=t>C ? t:C;
return t;
}
int main()
{
float a,b,c;
scanf("%f%f%f",&a,&b,&c);
printf("%0.3f\n%0.3f",Max(a,b,c),f(a,b,c));
return 0;
}
0.0分
0 人评分