有如下程序 main() { float x=2.0,y; if(x<0.0)y=0.0; else if(x>10.0)y=1.0/x; else y=1.

12 查阅

有如下程序

main()

{ float x=2.0,y;

if(x<0.0)y=0.0;

else if(x>10.0)y=1.0/x;

else y=1.0;

printf("%f\n",y);}

该程序的输出结果是

A.0.000000

B.0.250000

C.0.500000

D.1.000000

参考答案:

D解析:本题考查if语句中的一种表达方式,即:if卐lse if叀 该表达式的语句是:if(表达式1)语句1else if(表达式2)语句2else if(表达式3)语句3else语句4厖本题执行elsey=1.0,并且以"%f"输出。

计算机二级