试题 试卷
题型:填空题 题类: 难易度:普通
山东省滨州市滨城区信息技术开学模拟考试卷(三)
m=1
for i in range(10):
m=m*i
print(m)
Dim a(1 To 5) As Integer
a(1) = 1
For i = 2 To 5
a(i) = Int(Rnd * 5) + 1
If a(i) Mod 2 = 0 Then
a(i) = a(i) + i
Else
a(i) = a(i) + a(i - 1)
End If
Next i
a(1)~a(5)的值不可能的是( )
x=1
y=4
Do While y>4
x=x * y
y=y+1
Loop
Print x
s1="today"
s2=""
for c in s1:
s2=c+s2
print(s2)
图 a
图 b
请回答下列问题:
试题篮