单击命令按钮时,下列程序的执行结果是Private Sub Book( x As Integer) x=x*2+1 If x<6 ThenCall Book(x) End If x=x * 2 + 1 Print x;End SubPrivate Sub Command2_Click( ) Book 2 End Sub
单选题
单击命令按钮时,下列程序的执行结果是Private Sub Book( x As Integer) x=x*2+1 If x<6 ThenCall Book(x) End If x=x * 2 + 1 Print x;End SubPrivate Sub Command2_Click( ) Book 2 End Sub