#include<stdio.h>
struct node
{
#define Max(a,b) a>b?a:b//个人感觉宏定义放在结构体里和放在放在最上面是没有区别的,可能是为了读代码方便
int x,y;
};
struct node2
{
int x,y;
};
int main()
{
node a;
node b;
scanf("%d%d",&a.x,&a.y);
scanf("%d%d",&b.x,&b.y);
printf("%d %d\n",Max(a.x,a.y),Max(b.x,b.y));
return 0;
}
/*
输入
1 2 3 4
输出
2 4
*/
时间: 2024-11-29 11:35:27