题目内容
若输入8,则下列程序执行后输出的结果是____________.输入 t
If t≤4 Then
c=0.2
Else
c=0.2+0.1*(t-3)
End If
输出 c
0.7
![](http://thumb.zyjl.cn/images/loading.gif)
练习册系列答案
相关题目
若输入8,则下列程序执行后输出的结果是____________________.
t=input(“t=”); if t<=4 c=0.2; else c=0.2+0.1(t-3); end disp(c) |