【单选题】Cruise Seattle The Port of Seattle is ready to set sail for a very busy 2007 cruise season. Seattle will welcome (150) 200 cruise ship visits and around 735,000 passengers during the upcoming cruise s...
【单选题】有下面程序代码: Private Sub Command1_Click() i = 1 Do While i 10 Print i = i + 2 Loop End Sub 程序运行时输出字符"*"的个数是
【单选题】有下面程序代码: Private Sub Command1_Click() Dim x As Integer, s As Integer x = 1 For k = 1 To 3 x = x + 1 : proc x : s = s + x Next k Print s End Sub Private Sub proc(ByVal a As Integer) Static x As Integer...
【单选题】is a major port of Turkey.
【简答题】有下面程序代码: Private Sub Command1_Click() Dim Sign As Integer Sign = 1 a = 2 b = 3 For k = 1 To 5 c = a+ Sign * b a = b b = c Print c; Sign = -Sign Next k End Sub