#include<stdio.h>
#include<math.h>int
tmax(int,int,int);
int main(){
int a,b,c,d;
scanf("%d %d %d",&a,&b,&c);
d=tmax(a,b,c);printf("max=%d\n",d);
return 0;}
int tmax(int x,int y, int z){ int t;if(x>=y)t=x;elset=y;if(z>=t)t=z;return t;}LZ的math()自带的一般处理两个,如果要处理三个就要自己定义出来,而且LZ的printf输出d才对,