填空题

下面程序的输出结果是 【14】 。 #define MIN(a,b) (((a)<(b))a:b) #include <iostream.h> void main() { int x= 3, y=5; cout<< MIN(x,y)<<end1; }

【参考答案】

C