单选题 下列程序的输出结果是( )。 #include int min(int a,int b) { if(a
【正确答案】 B
【答案解析】解析:本题考查的是函数的调用,第一次调用min(2,3),因为2<3,所以返回值为2,第二次调用min(1,2),因为1<2,所以返回1。