单选题 下列程序的运行结果为
#include<iostream.h>
void print(double

【正确答案】 B
【答案解析】[解析] 本题考查的是函数的调用,第一次调用min(2,3),因为2<3,所以返回值为2,第二次调用min(1,2),因为l<2,所以返回1。