#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++教程频道。










