【单选题】
“__________” is Byron’s masterpiece, a great comic epic of the early 19th century. It is a poem based on a traditional Spanish legend of a great lover and seducer of women.
【简答题】
下列程序段的运行结果是[填空] 。
Private Sub Form_Click()
Dim a(3) As Long
a(0) = 1: a(1) = 2: a(2) = 3: a(3) = 4
j = 1
For i = 3 To 0 Step -1
s = s + a(i) * j
j = j * 10
Next i
Print s
End Sub