#include //加头文件
int max(int a,int b)
{
x05int temp;
x05if (a > b)
x05x05temp=a;
x05else
x05x05temp=b;
x05x05returnx05temp;
}
int main(int argc,char* argv[])
{
int x,y;
int result;//变量尽量先定义再使用
x05x05scanf("%d %d",&x,&y);
result=max(x,y);
x05printf("max=%dn",result);
}