单项选择题编写如下程序代码:Private Sub Command1_Click() s = Visual Basic x = Left(s, 1) For i = 2 To Len(s) z = Mid(s, i, 1) If z > x Then x = z Next i Print xEnd Sub程序运行后,单击命令按钮Command1,输出结果为( )。
单项选择题设有以下程序片段:Public x%Private y$Private Sub Command1_Click() Dim a ……End SubPrivate Sub Command2_Click() Static b ……End Sub在Command1_Click过程中无法访问的变量是( )。