请选出以下程序段的输出结果______。
#include <stdio.h>
#define MIN(x,y) (x<y)?x:y
Main()
{
Int i,j,k;
I=10;j=15;
K=10*MIN(i,j);
Printf("%d\n",k);
}
A.15 B.100 C.10 D.150正确答案C
请选出以下程序段的输出结果______。
#include <stdio.h>
#define MIN(x,y) (x<y)?x:y
Main()
{
Int i,j,k;
I=10;j=15;
K=10*MIN(i,j);
Printf("%d\n",k);
}
A.15 B.100 C.10 D.150正确答案C