C语言程序设计50例(经典收藏)

2020-01-06 20:20:54王冬梅

#else
  printf("40: The larger one is %dn",MAXIMUM(a,b));
#endif
#undef MAX
#ifdef MAX
  printf("40: The larger one is %dn",MAXIMUM(a,b));
#else
  printf("40: The lower one is %dn",MINIMUM(a,b));
#endif
#define MIN
#ifndef MIN
  printf("40: The lower one is %dn",MINIMUM(a,b));
#else
  printf("40: The larger one is %dn",MAXIMUM(a,b));
#endif
  getch();
}
注:相关教程知识阅读请移步到C++教程频道。