3若输入t=4,则执行下面算法语句后输出的结果为0( )
t=input("t=");
if t<=4
c=0.2+3.8 (4-t);
else
c=0.2+0.1 (t-3);
end
print(%io(2),c);
A.4 B.0.2 C.0.1 D.0.3
解析因为t=4,所以c=0.2+3.8(4-4)=0.2,故输出的结果为0.2.
答案B
4下面程序输入"x=π"时的运算结果是( )
x=input("x=");
if x>0
y=-2;
else
if x=0
y=0;
else
y=2;
end