1.
阅读下图,回答下面小题。
Private Sub Timer1_Time( )
For i= 0 To
10 Step 1
Shape l(0)
BackColor= RGB(Int(Rnd * 256), Int(Rnd * 256), In(Rnd * 256)
Next i
End Sub
-
(1)
小明在编写逐帧动画的程序时,运行时如果出现下边错误说明( )
A . 工程没有保存
B . Timer1没有定义
C . i没有定义
D . Shape没有定义
-
-
(2)
小明只需要在代码的第一行输入( )语句就能改正错误。
A . Dim i as integer
B . Dim Shape as integer
C . i=0
D . Dim i
-