1 Dim time, price As Integer ‘time代表停车时间price代表停车费用
2 time = Text1. Text ‘在文本框输入停车时间
3 If time <= 12 Then
4 price= 10
5 Else
6 price= 10 + (time - 12)
7 EndIf
8 Form1. Print price
【图 11】
input “x=”;x
If x>8 then y=3*x-2 else y=2*x+1
print “y=”;y
end
(x的值输入为6)
运行结果为( )
r=int(input(“半径:”))
p= ①
c= ②
③
空白处应补充的代码:① ② ③
p=int(input())
if ④ :
p=p-p*0.2
else:
p= ⑤
print(“应付金额:”, p)
空白处应补充的代码:④ ⑤